Home / Python Loops / How to Loop Through Set to Access Its Items in Python In this example we will show how to loop through the set to access its items in Python. Source Code my_set = {'a', 'b', 1, 2, 'c'} for item in my_set: print(item) Output: 1 2 a c b