Open In App

Python | sympy.sqrt() method

Last Updated : 12 Jun, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

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


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads