my_list1 = [1, 2, 3] my_list2 = ['a', 'b', 'c'] for item1, item2 in zip(my_list1, my_list2): print(item1, item2)