Exploring Zip Function || Python
In this we are going to see a basic program to Exploring Zip Function in Python Programming Language.


l1 = [1, 4, 7, 10, 13, 16, 19]
l2 = [2, 5, 8, 11, 14, 17, 20]
l3 = [3, 6, 9, 12, 15, 18, 21]
l = [x for x in zip(l1, l2, l3)]
print(l)

# Coded by Saahil

#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post