Contact: aviboots(AT)netvision.net.il
39,844 questions
51,765 answers
573 users
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#']] '''