I have a bunch of numbers in scientific notation and I would like to find their exponent. For example:
>>> find_exp(3.7e-13)
13
>>> find_exp(-7.2e-11)
11
Hence I only need their exponent ignoring everything else including the sign.
I have looked for such a way in python but similar questions are only for formatting purposes.