Python cmath.sqrt() 方法
实例
求复数的平方根:
#Import cmath Library
import cmath
#Return the square root of a
complex number
print (cmath.sqrt(2 + 3j))
print (cmath.sqrt(15))
亲自试一试 »
定义和用法
cmath.sqrt()
方法返回复数的平方根。
注释:数字必须大于或等于 0。
语法
cmath.sqrt(x)
参数值
参数 | 描述 |
---|---|
x | 必需。求平方根的数字。 如果数字小于 0,则返回 ValueError。 如果 value 不是数字,则返回 TypeError |
技术细节
返回值: | 一个复数 值,代表复数的平方根 |
---|---|
Python 版本: | 1.5 |