+ 1

What is sqrt?

29th Jun 2021, 8:48 AM
Anonim
12 Antworten
+ 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
29th Jun 2021, 9:17 AM
David Ashton
David Ashton - avatar
+ 5
squareroot
29th Jun 2021, 9:01 AM
Allan 🔥STORMER🔥🔥🔥🔥
Allan 🔥STORMER🔥🔥🔥🔥 - avatar
+ 2
David Ashton The pow() function raises to the power: pow(9, 2) = 81
29th Jun 2021, 10:36 AM
Solo
Solo - avatar
+ 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
30th Jun 2021, 10:28 AM
Ashish Gupta
Ashish Gupta - avatar
+ 1
Thnx
29th Jun 2021, 9:27 AM
Anonim
+ 1
Vasiliy Sorry, I meant to say pow(9, .5)
29th Jun 2021, 3:31 PM
David Ashton
David Ashton - avatar
0
sqrt stands for square root ✓9 = 3 9 ** 1/2 = 3
30th Jun 2021, 6:52 AM
Mayank Gupta
Mayank Gupta - avatar
0
It is used to find the square root of a number.
30th Jun 2021, 5:19 PM
Ruchika Mehra
Ruchika Mehra - avatar
0
Sqrt is “square root”👍
1st Jul 2021, 8:36 AM
Arseni
Arseni - avatar
- 1
Short form of Squareroot
30th Jun 2021, 6:12 AM
PARV SHARMA
PARV SHARMA - avatar