a_list[1,2,3,4,100]
#loop through a list using WHILE loop and indexes
index = 0
while index < len(a_list):
    print(a_list[index])
    index += 1
# loop through a_list with FOR loop
for item in a_list:
    print(item)