for number in range(1,101): print number
Can someone please explain to me why the above code prints 1-100? I understand that the range functio
range is the list of the numbers 1 to 100.
number then references each object in that list
number