Python cmath.sin() 方法
实例
求复数的正弦:
#import cmath for complex number operations
import cmath
#find
the sine of complex number
print (cmath.sin(2 + 3j))
亲自试一试 »
定义和用法
cmath.sin()
方法返回数字的正弦值。
正弦是一个三角函数,表示直角三角形的对边与斜边之间的比率。
语法
cmath.sin(x)
参数值
参数 | 描述 |
---|---|
x | 必需。求正弦的数 |
技术细节
返回值: | 一个复数 值,表示复数的正弦 |
---|---|
Python 版本: | 1.5 |