+ 1
What is sqrt?
12 Respostas
+ 13
sqrt means "square root"
3 x 3 = 9 means
3 squared = 9
3 squared is expressed as 3**2
3 is the square root of 9
the square root of 9 is expressed 9**.5
Or you can use the built-in function pow()
the square root of 9 is expressed pow(9, .5)
If you really want to import a module, you can import the math.sqrt() method or you can import the numpy.sqrt() method
+ 5
squareroot
+ 2
David Ashton
The pow() function raises to the power: pow(9, 2) = 81
+ 2
sqrt mean square root .
for Example...
(the square of 3 is 9,
3^2= 9
and the square root of 9,Â
â9 = 3.)
Pow(3,2)=9
+ 1
Thnx
+ 1
Vasiliy Sorry, I meant to say pow(9, .5)
0
sqrt stands for square root
â9 = 3
9 ** 1/2 = 3
0
It is used to find the square root of a number.
0
Sqrt is âsquare rootâđ
- 1
Short form of Squareroot