Python/ref cmath exp

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

<languages />

Python cmath.exp()方法

❮cmath方法

查找复数的指数:

    #import cmath for complex number operations 
import cmath

#find 
    the exponential of a complex number
print (cmath.exp(2 + 3j))

定义和用法

The cmath.exp() 方法接受一个复数并返回指数值。如果数字是x,则返回e ** x,其中e是自然对数的底数。

句法

    cmath.exp(x)
  

参数值

参数 描述
x 需要。查找指数值的数字。

技术细节

返回值: A

complex 值,代表复数的指数

Python版本: 1.5

❮cmath方法