Contact: aviboots(AT)netvision.net.il
39,926 questions
51,859 answers
573 users
list1 = [1, 2, 3, 4] list2 = ['python', 'java', 'c', 'c++'] list_of_lists = [list(l) for l in zip(list1, list2)] print(list_of_lists) ''' run: [[1, 'python'], [2, 'java'], [3, 'c'], [4, 'c++']] '''