- 1
exponentiation
Why in Python 3.7 when I write 9 ** (1/2) I get 3. But when I code 9 ** (0.5) I get 18?
1 Respuesta
0
I get 3.0 in both cases.
Could you show your code please?
Why in Python 3.7 when I write 9 ** (1/2) I get 3. But when I code 9 ** (0.5) I get 18?