How to convert string with floats to float list in Python

2 Answers

0 votes
s = "3.14, 7.82, 2.43, 1.67, 4.32, 5.89"

lst = [float(i) for i in s.split(', ')] 
  
print(lst)


 
'''
run:
 
[3.14, 7.82, 2.43, 1.67, 4.32, 5.89]
 
'''

 



answered Dec 20, 2019 by avibootz
0 votes
s = "3.14, 7.82, 2.43, 1.67, 4.32, 5.89"

lst = list(map(float, s.split(', '))) 
  
print(lst)


 
'''
run:
 
[3.14, 7.82, 2.43, 1.67, 4.32, 5.89]
 
'''

 



answered Dec 20, 2019 by avibootz

Related questions

...