new to python just trying to figure out how to print the minimum of this generated list, but its giving me the error
TypeError: 'int' object is not iterable
and this is my code,
number = []
for number in range(1,21)
print min(number)
I have tried several things including
print(min(int(number)))
Which seems like since its giving me an int problem would solve it, no?