+ 3
How to insert square root in Python??
I want to find square root of a number. How should I do that?
2 ответов
+ 19
import math
print(math.sqrt(64))
0
can do it without math module using
(variable)**0.5
I want to find square root of a number. How should I do that?