📜  python euler - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:45.643000             🧑  作者: Mango

代码示例1
from math import e

print(e)
#results: 2.718281828459045 #Euler

print(math.exp(7.13)) #== e**7.13
#results: 1248.8769669132553