I do need your help in my actual python program.

There I have to convert exponential strings, like 6.5235375356299998e-07, to a float value.

link|improve this question

3  
Did you try float("6.5235375356299998e-07")? – Sven Marnach Feb 8 at 13:02
>>> a = 6.52353753563E-7 >>> float(a) 6.5235375356299998e-07 – StefanS Feb 8 at 13:03
yes, i tried it, but the result is a exponent, too – StefanS Feb 8 at 13:04
2  
@StefanS: What do you mean by "a float value" then? – KennyTM Feb 8 at 13:05
I think he wants it displayed as 0.00000065235375356299998. – Tim Pietzcker Feb 8 at 13:07
show 1 more comment
feedback

1 Answer

up vote 2 down vote accepted

6.5235375356299998e-07 is a perfectly legal float even if there is an e in it. You can do the whole calculation with it:

>>> 6.5235375356299998e-07 * 10000000
6.5235375356300001

>>> 6.5235375356299998e-07 + 10000000
10000000.000000652

In the second case, many digits will disappear because of the precision of a python's float.

If you need the string representation without e, try this:

>>> '{0:.20f}'.format(6.5235375356299998e-07)
'0.00000065235375356300'

but it will become a string and you won't be able to do any calculus with it any more.

link|improve this answer
1  
or even * 1e7 :) – Niklas B. Feb 8 at 13:07
Super, that is a fine way! Thank you ver much. – StefanS Feb 8 at 13:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.