How to convert the output of zip () from tuple to list in Python

1 Answer

0 votes
lst1 = [1, 2, 3, 4, 5, 6]
lst2 = ['A', 'B', 'C', 'D', 'E', 'F']
 
zip_list = list(map(list, zip(lst1, lst2)))
 
print(zip_list)




'''
run:

[[1, 'A'], [2, 'B'], [3, 'C'], [4, 'D'], [5, 'E'], [6, 'F']]

'''

 



answered Mar 18, 2023 by avibootz
...