How to convert a list of strings with digits to list of tuples in Python

1 Answer

0 votes
lst_str = ['1, 2, 3', '4, 5, 6', '7, 8, 9'] 
 
lst_tpl = [tuple(map(int, part.split(', '))) for part in lst_str]  
 
print(str(lst_tpl)) 
 
 
 
'''
run:
 
[(1, 2, 3), (4, 5, 6), (7, 8, 9)]
 
'''

 



answered Dec 14, 2019 by avibootz
edited Dec 14, 2019 by avibootz

Related questions

1 answer 285 views
2 answers 135 views
1 answer 202 views
1 answer 269 views
3 answers 397 views
4 answers 357 views
...