Is this possible to zip or combine two different sized list?
Code:
>>list1 = [1, 2, 3] >>list2 = [4, 5, 6, 7, 8] >>zip(list1, list2) [(1, 4), (2, 5), (3, 6)]
Comment