How to return scientific notation to decimal places with scientific notation still in python?
So I have a value like: 1.197474567059189e-09
How do I return something like 1.1974e-09 instead?
Thanks!
If I use round to say, 5 decimal places, it'll just return 0.00000. I could round to many many decimal places, but the value I'm using could be e-08 or e-10 at some point so I want it to keep working if that's the case.