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