Python | cmath.sqrt() method
With the help of cmath.sqrt() method, we can find the value of square root any number by passing it to cmath.sqrt() method.
Syntax :
cmath.sqrt(value)
Return : Return the square root of any value.
Example #1 :
In this example we can see that by using cmath.sqrt() method, we are able to get the values of square root by passing value to it.
# importing cmath library import cmath # using cmath.sqrt() method gfg = cmath.sqrt(4) print(gfg) |
Output :
(2+0j)
Example #2 :
# importing cmath library import cmath # using cmath.sqrt() method gfg = cmath.sqrt(3) print(gfg) |
Output :
(1.7320508075688772+0j)
Recommended Posts:
- class method vs static method in Python
- Python | set() method
- Python | os.dup() method
- Python | next() method
- Python | after method in Tkinter
- Python | sys.getrecursionlimit() method
- Python PIL | eval() method
- Python | sympy.rf() method
- Python | os.readlink() method
- Python | os.getpgid() method
- Python | sys.getdefaultencoding() method
- Python | os.tcgetpgrp() method
- Python PIL | ImagePalette() Method
- Python | sympy.ff() method
- Python | sympy.nT() method
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.


