Skip to content

Instantly share code, notes, and snippets.

@essamamdani
Created May 11, 2020 20:38
Embed
What would you like to do?
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