数学常量



e

数学常数 e 被称为**欧拉数**。

语法

math.e

返回值

math.e 常量等于欧拉数。

示例

from math import e

print ("Euler's Number: ",e)

它将产生以下**输出** -

Euler's Number: 2.718281828459045

pi

在数学中,pi(表示为 Π)是一个数学常数,等于圆的周长与其直径之比。

语法

math.pi

返回值

math.pi 常量返回周长/直径。

示例

from math import pi

print ("Mathematical constant Π: ",pi)

它将产生以下**输出** -

Mathematical constant Π: 3.141592653589793

tau

在数学中,Tau(表示为 τ)定义为一个数学常数,等于圆的周长与其半径之比,等于 2Π。

语法

math.tau

返回值

math.tau 返回周长/半径。

示例

from math import tau

print ("Mathematical constant τ : ",tau)

它将产生以下**输出** -

Mathematical constant τ : 6.283185307179586

inf

此数学常数等价于正无穷大。对于负无穷大,请使用 - math.inf。这等价于 float("Inf")。

语法

math.inf

返回值

该常量返回正无穷大。

示例

from math import inf

print ("Positive infinity: ",inf, "is equal to", float("Inf"))
print ("Negative infinity: ",-inf, "is equal to", float("-Inf"))

它将产生以下**输出** -

Positive infinity: inf is equal to inf
Negative infinity: -inf is equal to -inf

nan

此常量是一个浮点“非数字”(NaN)值。等价于 float('nan') 的输出。

语法

math.nan

返回值

此常量返回 NaN,代表非数字。

示例

from math import nan

print ("Not a number:", nan, "is equal to", float("nan"))

它将产生以下**输出** -

Not a number: nan is equal to nan
python_maths.htm
广告