I have a big list of list. I am trying to find max and min in it. Previous questions on this consists lists with strings and this question is differen.t
big_list = [[137.83,81.80,198.56],0.0,[200.37,151.55,165.26, 211.84],
0.0,[1,2,3],4,[5,6,0,5,7,8],0,[2,1,4,5],[9,1,-2]]
My code:
max = max(list(map(max,boxs_list)))
Present output:
TypeError: 'numpy.float64' object is not iterable