Python math.inf 常量

实例

打印正无穷大和负无穷大:

  1. # 导入 math 库
  2. import math
  3. # 打印正无穷大
  4. print (math.inf)
  5. # 打印负无穷大
  6. print (-math.inf)

定义与用法

math.inf 常量返回一个浮点型正无穷大。

对于负无穷大, 可以使用 -math.inf

inf 常量相当于 float('inf').


语法

  1. math.inf

技术细节

返回值:一个 float 值,表示正无穷大的值
Python 版本:3.5

分类导航