How to convert a string to floating point in Python

6 Answers

0 votes
s = '+3.14'
f = float(s)
print(f)


'''
run:

3.14

'''

 



answered Jul 1, 2018 by avibootz
0 votes
s = '-13'
f = float(s)
print(f)


'''
run:

-13.0

'''

 



answered Jul 1, 2018 by avibootz
0 votes
s = '      -13.33\n'
f = float(s)
print(f)


'''
run:

-13.33

'''

 



answered Jul 1, 2018 by avibootz
0 votes
s = '3e-002'
f = float(s)
print(f)


'''
run:

0.03

'''

 



answered Jul 1, 2018 by avibootz
0 votes
s = '+15E6'
f = float(s)
print(f)


'''
run:

15000000.0

'''

 



answered Jul 1, 2018 by avibootz
0 votes
s = 'Infinity'
f = float(s)
print(f)


'''
run:

inf

'''

 



answered Jul 1, 2018 by avibootz
...