带有Python示例的math.exp()方法
Python math.exp() 方法
math.exp()方法是数学模块的库方法,用于获取指数形式的数字,它接受数字并以指数格式返回数字(如果数字为x,则返回e ** x。
注意:如果传递了除数字以外的任何内容,则该方法将返回类型错误“ TypeError:需要浮点数”。
它的语法 math.exp() 方法:
math.exp(n)
Parameter(s): n-整数或浮点数。
返回值: float-它返回一个浮点数,该浮点数是数字n的指数形式。
示例
Input:a = 111.111
# 函数调用
print(math.exp(a))
Output:
1.7984326512709283e+48
Python代码演示示例 math.exp() 方法
# Python代码演示示例# math.exp() method
import math
# 数字
a = 0
b = 245
c = -102.34
d = 111.111
e = -123.456
# 以exp格式打印值
print("exp(a): ", math.exp(a))
print("exp(b): ", math.exp(b))
print("exp(c): ", math.exp(c))
print("exp(d): ", math.exp(d))
print("exp(e): ", math.exp(e))
输出结果
exp(a): 1.0exp(b): 2.5243412626998188e+106exp(c): 3.583461328080821e-45exp(d): 1.7984326512709283e+48exp(e): 2.4195825412645934e-54
以上是 带有Python示例的math.exp()方法 的全部内容, 来源链接: utcz.com/z/321440.html