Python/ref math inf

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python math.inf常数

Methods数学方法

打印正负无穷大:

    # Import math Library
import math 

# Print the positive infinity

    print (math.inf)

# Print the negative infinity
print (-math.inf)

定义和用法

The math.inf 常数返回浮点正无穷大。

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

inf常数等于 float('inf') .

句法

math.inf

技术细节

返回值: A

float 值,表示正无穷大的值

Python版本: 3.5

Methods数学方法