[Solved] Printing the minimum value out of a list (PYTHON) [duplicate]
for number in range(x, y) every number in that range represents a single int you cannot take the min of a single int. However you could append all those values to your empty list number and then take the min of that list, but even so we could just print the min of the entire … Read more