Skip to content

Instantly share code, notes, and snippets.

@essamamdani
Created May 11, 2020 20:39
Show Gist options
  • Select an option

  • Save essamamdani/51001490dbe47f79b06ff0984cbcd5d9 to your computer and use it in GitHub Desktop.

Select an option

Save essamamdani/51001490dbe47f79b06ff0984cbcd5d9 to your computer and use it in GitHub Desktop.
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