How to unzip a list of tuples into a list with two sublist in Python

1 Answer

0 votes
list_of_tuples = [(34, 'python'), (78, 'c'), (81, 'c++'), (52, 'java'), (99, 'c#')]

lst = list(map(list, zip(*list_of_tuples)))

print(lst)
 
 
 
'''
run:
 
[[34, 78, 81, 52, 99], ['python', 'c', 'c++', 'java', 'c#']]

'''

 



answered Mar 17, 2023 by avibootz

Related questions

1 answer 212 views
2 answers 296 views
1 answer 243 views
3 answers 367 views
4 answers 320 views
...