My issue
tuple=(1,2,3,4,5)
for item in tuple:
print(item)
My code
# write the code to solve the problem
tuple = (1,2,3,4,5)*10
for item in tuple:
print(item)
Learning course: ATT - Python
Problem Link: Loop through tuple in ATT - Python
tuple=(1,2,3,4,5)
for item in tuple:
print(item)
# write the code to solve the problem
tuple = (1,2,3,4,5)*10
for item in tuple:
print(item)
Learning course: ATT - Python
Problem Link: Loop through tuple in ATT - Python