python - Convert scientific notation to decimals -


i have numbers in file (so, strings) in scientific notation, like:

8.99284722486562e-02  

but want convert them to:

0.08992847 

is there built-in function or other way it?

i'm pretty sure can with:

float("8.99284722486562e-02") # , 'rounding' "{:.8f}.format(float("8.99284722486562e-02")) 

Comments

Popular posts from this blog

shopping cart - Page redirect not working PHP -

php - How to modify a menu to show sub-menus -

python - Installing PyDev in eclipse is failed -