How to convert a list of string numbers into a list of lists of numbers in Python

1 Answer

0 votes
import ast 

lst = ['32, 53', '1234, 9482', '3.14, 1.23', '12345, 98473'] 
           
lst_tst = [list(ast.literal_eval(e)) for e in lst] 
  
print(lst_tst)


'''
run:

[[32, 53], [1234, 9482], [3.14, 1.23], [12345, 98473]]

'''

 



answered Dec 23, 2019 by avibootz

Related questions

2 answers 225 views
1 answer 145 views
5 answers 271 views
1 answer 117 views
2 answers 249 views
1 answer 215 views
...