Python/ref cmath cos
来自菜鸟教程
<languages />
Python cmath.cos()方法
例
查找复数的余弦:
#import cmath for complex number operations import cmath #find the cosine of a complex number print (cmath.cos(2 + 3j))
定义和用法
The
cmath.cos()
方法返回复数的余弦值。
句法
cmath.cos(x)
参数值
参数 | 描述 |
---|---|
x | 需要。查找余弦的数字 |
技术细节
返回值: | A
|
Python版本: | 1.5 |