Python Math exp() 函数
Python Math exp() 方法返回x的指数e^x。
Python Math exp() 语法
以下是 exp() 方法的语法:
import math
math.exp( x )
注意:exp()是不能直接访问的,需要导入 math 模块,通过静态对象调用该方法。
Python Math exp() 参数
- x – 数值表达式。
Python Math exp() 返回值
返回x的指数,ex。
Python Math exp() 示例1
以下展示了使用 exp() 方法的实例:
#!/usr/bin/python3
import math
test_int = 4
test_neg_int = -3
test_float = 0.00
# checking exp() values with different numbers
print (math.exp(test_int))
print (math.exp(test_neg_int))
print (math.exp(test_float))
输出:
Python Math exp() 示例2
#!/usr/bin/python3
import math
# checking for string
print (math.exp("25"))
输出: