Loop Sets

 

What You'll Learn: In this tutorial, you'll discover how to loop through the items in a set using a for loop. Looping helps you access and work with each item individually.

Loop Through a Set

You can loop through the set items using a for loop to print or process each item.

Example Code:

python
thisset = {"apple", "banana", "cherry"}
for x in thisset:
    print(x)

Output: 

apple
banana
cherry

What's Happening Here?

  • The for loop goes through each item in thisset and prints it.

Try It Yourself: Fun Exercises

  1. Loop Through Your Favorite Fruits:
    • Create a set of your favorite fruits.
    • Use a for loop to print each fruit.
  2. Explore Your Hobbies:
    • Write a set of your hobbies.
    • Loop through the set and print each hobby.

Summary:

In this Python tutorial, we learned how to loop through set items using a for loop. This method allows you to access and work with each item in the set efficiently. Keep experimenting and have fun with sets in Python!