I'm solving some cryptographic problem,
I need the cube root of 4.157786362549383e+37
, which gives me 3464341716380.1113
using
x = x ** (1. / 3)
I thought it was weird at first, so I did try:
x=1000
print(x)
x= pow(x,1/3)
print(x)
but got 9.99999998
I have even tried somewhere else. But i got the same result. Is there something wrong? How can I calculate the true cube root?