How to get the column mean in a tuple list with Python

1 Answer

0 votes
# column mean in a tuple list = the average value of elements within each

tuple_list = [(1, 2, 3),
              (4, 5, 6),
              (7, 8, 9)]

column_means = [sum(col) / len(col) for col in zip(*tuple_list)]

print(column_means)



'''
run:

[4.0, 5.0, 6.0]

'''

 



answered Jan 13 by avibootz
...