#coding: UTF-8 list1 = ["A", "B"] list2 = [10, 20, 30, 40] str = "Hello" list = zip(list1, list2, str) print list