Python Math floor() 函数

Python Math floor() 函数

Python Math floor(x) 返回数字的下舍整数,小于或等于 x。

Python Math floor() 语法

以下是 floor() 方法的语法:

import math

math.floor( x )

注意:floor()是不能直接访问的,需要导入 math 模块,通过静态对象调用该方法。

Python Math floor() 参数

  • x – 数值表达式。

Python Math floor() 返回值

返回小于或等于 x 的整数。

Python Math floor() 实例

以下展示了使用 floor() 方法的实例:

#!/usr/bin/python3

import math

print ("math.floor(-45.17) : ", math.floor(-45.17))
print ("math.floor(100.12) : ", math.floor(100.12))
print ("math.floor(100.72) : ", math.floor(100.72))
print ("math.floor(math.pi) : ", math.floor(math.pi))

输出:

Python Math floor() 函数

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程