homework5git/lists/range01.py

16 lines
421 B
Python

# This code is based on: https://www.w3schools.com/python/ref_func_range.asp
x = range(3, 6)
print(f"x = {x}, type = {type(x)}")
# Another way to think of the for loop is to read it as
# "Select the next element from the list or range, put it into the variable
# item, the do whatever you like with that one value in item".
# The for loop ends when the entire list has been processed.
for item in x:
print(item)