Languages
[Edit]
EN

Python - iterate through set

0 points
Created by:
isherwood
599

In this article, we would like to show you how to iterate through the set in Python.

Practical example

In this example, we present how to iterate through the set and print its values by simply using a for loop.

my_set = {'A', 'B', 'C'}

for item in my_set:
    print(item)

Output:

A
B
C

Alternative titles

  1. Python - loop through set
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Python - set (popular problems)

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join