python loop a function code example
Example: python for loop
for i in data: #where data is your list or tuple
print(i) #printing the values in data iteratively!
for i in data: #where data is your list or tuple
print(i) #printing the values in data iteratively!