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/1c31d7f44680d3edce913b9f73d8732d to your computer and use it in GitHub Desktop.
Save essamamdani/1c31d7f44680d3edce913b9f73d8732d to your computer and use it in GitHub Desktop.
zip method using longest property
import itertools
lst1 = [1,2,3,4,5]
lst2=["banana","apple","mango","berry"]
lst3=["black","red"]
for (a, b, c) in itertools.zip_longest(lst1, lst2, lst2):
print (a, b, c)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment