Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,167 questions

40,724 answers

573 users

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

Related questions

1 answer 30 views
4 answers 115 views
1 answer 35 views
1 answer 70 views
...