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