Mega Code Archive

 
Categories / Python / Buildin Function
 

Zip a two lists

L1 = [1,2,3,4] L2 = [5,6,7,8] print zip(L1,L2)