iterating through list of tuples
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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