Open In App

Python | sympy.sqrt() method

With the help of sympy.sqrt() method, we can find the square root of any number by using sympy.sqrt() method.

Syntax : sympy.sqrt(number)
Return : Return square root of any number.



Example #1 :
In this example we can see that by using sympy.sqrt() method, we can get the square root of any number.




# import sympy
import sympy
  
# Use sympy.sqrt() method
num = sympy.sqrt(10)
  
print(num)

Output :

sqrt(10)



Example #2 :




# import sympy
import sympy
  
# Use sympy.sqrt() method
num = sympy.sqrt(36)
  
print(num)

Output :

6

Article Tags :