different ways of using for loop in python code example
Example 1: how to make loops in python
for x in range(0, 3):
print("We're on time %d" % (x))
Example 2: python for loop
for i in data: #where data is your list or tuple
print(i) #printing the values in data iteratively!