EN
Python - iterate through set
0
points
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