So I did my research but I still cant figure out why Im getting this error:
TypeError: int is not callable
Heres my code:
count = []
for row in Matrix:
count.append(row[0][0].Value)
results = map(int, count)
print max(results)
count list contained a list of string ints, I converted these to pure ints and then I wanted to find the max number but I get the error.
what am I not seeing here?
btw, print min(count)
works fine....