Python3 入门教程 Python3 math.inf常量 - 无穷大常量

2024-02-25 开发教程 Python3 入门教程 匿名 3

描述

Python ​math.inf ​正无穷大的浮点数,负无穷大,使用​-math.inf​ 。

math.inf ​相当于​float('inf')​ 的输出。


语法

math.inf​ 常量语法如下:

math.inf

返回值

返回一个浮点数,表示正无穷大。


实例

以下实例返回正无穷大与负无穷大:

# 导入 math 包
import math
# 输出正无穷大
print (math.inf)
# 输出负无穷大
print (-math.inf)

输出结果:

inf
-inf