Python/ref math e

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python math.e常数

Methods数学方法

打印欧拉号:

    # Import math Library
import math 

# Print the value of E

    print (math.e)

定义和用法

The math.e 常量返回Eular的数字:2.718281828459045。

句法

math.e

技术细节

返回值: A

float 值2.718281828459045,代表数学常数 e

Python版本: 1.5

Methods数学方法