How to convert list of tuples into list with Python

4 Answers

0 votes
lst_tpl = [('python', 1), ('java', 2), ('c#', 3), ('123', '4')] 
  
lst = [item for x in lst_tpl for item in x] 
  
print(lst) 
 
 
 
'''
run:
 
['python', 1, 'java', 2, 'c#', 3, '123', '4']
 
'''

 



answered Dec 14, 2019 by avibootz
0 votes
import itertools 

lst_tpl = [('python', 1), ('java', 2), ('c#', 3), ('123', '4')] 
  
lst = list(itertools.chain(*lst_tpl)) 
  
print(lst) 
 
 
 
'''
run:
 
['python', 1, 'java', 2, 'c#', 3, '123', '4']
 
'''

 



answered Dec 14, 2019 by avibootz
0 votes
lst_tpl = [('python', 1), ('java', 2), ('c#', 3), ('123', '4')] 
  
lst = [] 
  
for tp in lst_tpl: 
    for item in tp: 
        lst.append(item) 
  
print(lst) 
 
 
 
'''
run:
 
['python', 1, 'java', 2, 'c#', 3, '123', '4']
 
'''

 



answered Dec 14, 2019 by avibootz
0 votes
lst_tpl = [('python', 1), ('java', 2), ('c#', 3), ('123', '4')] 
  
lst = list(sum(lst_tpl, ())) 
  
print(lst) 
 
 
 
'''
run:
 
['python', 1, 'java', 2, 'c#', 3, '123', '4']
 
'''

 



answered Dec 14, 2019 by avibootz
...