Skip to content

Instantly share code, notes, and snippets.

@essamamdani
Created May 11, 2020 20:39
Embed
What would you like to do?
iterating through list of tuples
tuple_list = [(1,2,3), (4,5,6), (7,8,9)]
for triple in tuple_list:
print(triple)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment