Contact: aviboots(AT)netvision.net.il
40,888 questions
53,296 answers
573 users
list1 = ['z', 'g', 'w', 'o', 'p'] list2 = ['k', 's', 'm', 'x', 'f'] list3 = [] for i in range(len(list1)): list3.append([list1[i], list2[i]]) print(list3) ''' run [['z', 'k'], ['g', 's'], ['w', 'm'], ['o', 'x'], ['p', 'f']] '''