I think if I'd know the math behind it I might have figured it out by myself.
When I call math.log10(0.0000000000001)
I get -13
. But how do I convert this back into 0.0000000000001
? and how i'd handle it when using math.log(0.0000000000001)
?
Both ways, the fundamental, arithmetic one and the one using a built-in python function would interest me.