Python/ref cmath tan

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python cmath.tan()方法

❮cmath方法

查找复数的切线:

    #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

complex 值,表示复数的切线

Python版本: 1.5

❮cmath方法