I have a list of arrays like:
a = [array([6,2]),array([8,3]),array([4,2])]
I tried max(a) which returns the following error:>
max(a)
python 3.2 a=[([6,2]),([8,3]),([4,2])] max(a) Its working well