Source Code:
(back to article)
my_tuple = (1, 2, 3, 4, 5) for item in my_tuple: print(item)
Result:
Report an issue