How to convert a list of tuples to list of lists in Python

2 Answers

0 votes
lst_tpl = [(1, 2, 3), (4, 5, 6), (7, 8, 9)] 
  
lst_lst = list(map(list, lst_tpl)) 
  
print(str(lst_lst)) 
 
 
 
'''
run:
 
[[1, 2, 3], [4, 5, 6], [7, 8, 9]]
 
'''

 



answered Dec 14, 2019 by avibootz
0 votes
lst_tpl = [(1, 2, 3), (4, 5, 6), (7, 8, 9)] 
  
lst_lst = [list(item) for item in lst_tpl] 
  
print(str(lst_lst)) 
 
 
 
'''
run:
 
[[1, 2, 3], [4, 5, 6], [7, 8, 9]]
 
'''

 



answered Dec 14, 2019 by avibootz
...