Python math.inf 常数
例如:
打印正无穷大和负无穷大:
# Import math Library
import math
# 打印正无穷大
print (math.inf)
# 打印负无穷
print (-math.inf)
1、定义和用法
math.inf
常量返回浮点正无穷大。
对于负无穷大,请使用-math.inf
。
inf常数等效于float('inf')
。
2、调用语法
math.inf
3、方法说明
返回值: |
|
Python Version: | 3.5 |
例如:
打印正无穷大和负无穷大:
# Import math Library
import math
# 打印正无穷大
print (math.inf)
# 打印负无穷
print (-math.inf)
math.inf
常量返回浮点正无穷大。
对于负无穷大,请使用-math.inf
。
inf常数等效于float('inf')
。
math.inf
返回值: |
|
Python Version: | 3.5 |