You have already completed these exercises!
Do you want to take them again?
You completed the Python Loop Tuples Exercises from W3Schools.com
Share on:
What is a correct syntax for looping through the items of a tuple?
for x in ('apple', 'banana', 'cherry'): print(x)
for x in ('apple', 'banana', 'cherry') print(x)
foreach x in ('apple', 'banana', 'cherry') print(x)