Skip to content

Instantly share code, notes, and snippets.

@essamamdani
Created May 11, 2020 20:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save essamamdani/41e2a26d268843827f5dfa6d39fb14e7 to your computer and use it in GitHub Desktop.
Save essamamdani/41e2a26d268843827f5dfa6d39fb14e7 to your computer and use it in GitHub Desktop.
iterating lists through multi-variables
import itertools
lst1 = [1,2,3,4,5]
lst2=["banana","apple","mango","berry"]
lst3=["black","red"]
for (a, b, c) in zip(lst1, lst2, lst3):
print (a, b, c)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment