Open In App

Python | sympy.sqrt() method

Last Updated : 12 Jun, 2019
Comments
Improve
Suggest changes
Like Article
Like
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. Python3 1=1
# import sympy
import sympy

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

print(num)
Output :
sqrt(10)
Example #2 : Python3 1=1
# import sympy
import sympy

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

print(num)
Output :
6

Next Article
Article Tags :
Practice Tags :

Similar Reads