Python具有数学库,并且具有许多与此相关的函数。 exp()就是这样一种函数。该方法用于计算e的幂,即e^y或可以说y的 index 。 e的值大约等于2.71828…..
用法: math.exp(y)
参数:
y[必需]-它是任何有效的python数字,可以是正数或负数。
注意,如果y的值不是数字,则返回错误。
返回:通过计算e^y返回浮点数。
代码1:
# Python3 code to demonstrate
# the working of exp()
import math
# initializing the value
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))
输出:
54.598150033144236 0.049787068367863944 1.0
代码2:
# Python3 code to demonstrate
# the working of exp()
import math
# checking exp() values
# with inbuilt numbers
print (math.exp(math.pi))
print (math.exp(math.e))
输出:
23.140692632779267 15.154262241479262
代码3:TypeError
# Python3 code to demonstrate
# the working of exp()
import math
# checking for string
print (math.exp("25"))
输出:
Traceback (most recent call last): File "/home/c7ae4f1bef0ed8c7756b3f55e7d2ce81.py", line 6, in print (math.exp("25")) TypeError:a float is required
相关用法
- Python math expm1()用法及代码示例
- Python math isnan()用法及代码示例
- Python math isclose()用法及代码示例
- Python math gamma()用法及代码示例
- Python math.comb()用法及代码示例
- Python math.dist()用法及代码示例
- Python math.isqrt()用法及代码示例
- Python math.prod()用法及代码示例
- Python math.perm()用法及代码示例
注:本文由纯净天空筛选整理自AKASH GUPTA 6大神的英文原创作品 Python math library | exp() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。