SyntaxFix
Write A Post
Hire A Developer
Questions
Here is a non-numpy solution:
>>> a = [[40, 10], [50, 11]] >>> [float(sum(l))/len(l) for l in zip(*a)] [45.0, 10.5]