Python cmath.cos() 方法
实例
求复数的余弦:
#import cmath for complex number operations
import cmath
#find
the cosine of a complex number
print (cmath.cos(2 + 3j))
亲自试一试 »
定义和用法
cmath.cos()
方法返回复数的余弦。
语法
cmath.cos(x)
参数值
参数 | 描述 |
---|---|
x | 必需。求余弦的数 |
技术细节
返回值: | complex 复数值,表示复数的余弦 |
---|---|
Python 版本: | 1.5 |