To iterate through a list you can use for:
for x in ['one', 'two', 'three', 'four']:
print(x)
This will print out the elements of the list:
one
two
three
four
The range function generates numbers which are also often used in a for loop.
for x in range(1, 6):
print(x)
The res...