Python 3 – floor() 方法
描述
floor() 方法返回 x 的下舍整数,即不大于 x 的最大整数。
语法
floor() 方法的语法如下:
import math
math.floor(x)
注意 :此函数无法直接访问,因此我们需要导入数学模块,然后使用 math 静态对象调用此函数。
参数
x - 数值表达式。
返回值
该方法返回不大于 x 的最大整数。
示例
以下示例演示了 floor() 方法的使用。
#!/usr/bin/python3
import math # 导入 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))
输出
运行以上程序后,将产生以下结果。
math.floor(-45.17):-46
math.floor(100.12):100
math.floor(100.72):100
math.floor(math.pi):3