现在位置: 首页 > Python 3 教程 > 正文

Python math.floor() 方法

Python math 模块 Python math 模块

Python math.floor(x) 方法将 x 向下舍入到最接近的整数。

math.ceil() 方法将数字向上舍入到最接近的整数。

语法

math.floor() 方法语法如下:

math.floor(x)

参数说明:

  • x -- 必需,数字。如果 x 不是一个数字,返回 TypeError。

返回值

返回一个整数 int,表示向下舍入的数字。

实例

以下实例返回向下舍入到最接近的整数:

实例

# 导入 math 包
import math

# 输出向下舍入到最接近的整数
print(math.floor(0.6))
print(math.floor(1.4))
print(math.floor(5.3))
print(math.floor(-5.3))
print(math.floor(22.6))
print(math.floor(10.0))

输出结果:

0
1
5
-6
22
10

Python math 模块 Python math 模块