如何在Python中找到指数值?
ax的指数值是e的x次幂,即Euler常数,这是一个称为Euler数的无理数,等于2.718281。
有两种计算方法。
使用**运算符
>>> import math >>> math.e**2 #math.e is defined constant in math module 7.3890560989306495
使用exp()
方法
>>>import math >>> math.exp(2) 7.38905609893065
ax的指数值是e的x次幂,即Euler常数,这是一个称为Euler数的无理数,等于2.718281。
有两种计算方法。
使用**运算符
>>> import math >>> math.e**2 #math.e is defined constant in math module 7.3890560989306495
使用exp()
方法
>>>import math >>> math.exp(2) 7.38905609893065