How to create list of lists from two lists in Python

1 Answer

0 votes
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++']]

'''

 



answered Jul 25, 2022 by avibootz

Related questions

...