Python 数学常数
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
无穷大
这个数学常量等同于正无穷大。负无穷大可以使用-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