1# Creating a list. Can also be floats and intagers
2list = ["a", "b", "c", "d", "e", "f", "g"]
3
4# Have a for loop and then print the answer index of the variable in the loop(i)
5for i in range(len(list)):
6 print(list[i])
7
8# Output
9a
10b
11c
12d
13e
14f
15g