Home / Python Tuples / How to Loop Through Tuple Items in Python In this example we will show how to loop through the tuple items in Python. Source Code my_tuple = ('a', 'b', 'c', 'd') for item in my_tuple: print(item) Output: a b c d