#if you want iterate the list one by one you can simply use for loop
list1 = [1,True,"Meerab",8.9]
for i in list1:
print(i)
#if you want to iterate the list along with an index number
#The index value starts from 0 to (length of the list-1)
list2 = [3,9,"Ahmed",2.98,"Tom"]
#To find the len of list we can builtin function len()
size = len(list2)
#iterate a list
for j in range(1,size):
#you can give a range that you want to iterate
# print each item using index number
print(list2[i])