Python/ref cmath tan
来自菜鸟教程
<languages />
Python cmath.tan()方法
例
查找复数的切线:
#Import cmath Library import cmath #Return the tangent of a complex number print (cmath.tan(2 + 3j))
定义和用法
The
cmath.tan()
方法返回复数的切线。
句法
cmath.tan(x)
参数值
参数 | 描述 |
---|---|
x | 需要。查找正切的数字。如果该值不是数字,则返回TypeError |
技术细节
返回值: | A
|
Python版本: | 1.5 |