Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,844 questions

51,765 answers

573 users

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

Related questions

1 answer 217 views
3 answers 328 views
1 answer 129 views
2 answers 260 views
1 answer 195 views
...