如何使用python中的取整floor函数?

美女程序员鼓励师

如果一工程通过公式计算得出需要7.1辆汽车,直接取整成7辆肯定是完不成任务的,所以只有向上舍入成8才可以,即取整成7,再加1。取整加1,就是向上舍入成整数。相反,如果取整减1,那就是向下舍入成整数,即向下取整。今天,我们就来认识一下python中向下取整函数floor函数。

1、floor() 

得到最接近原数但是小于原数的部分

2、语法

import math

math.floor(x)

注意:floor() 函数需要导入 math 模块才能访问,通过静态对象调用该方法。

3、参数

x 数值表达式

4、返回值

返回数字的下舍整数。

5、使用

import math  #这将导入math模块

print("math.floor(-45.7):",math.floor(-45.7))

print("math.floor(45.7):",math.floor(45.7))

print("math.floor(-100.5):",math.floor(-100.5))

print("math.floor(100.5):",math.floor(100.5))

输出

math.floor(-45.7): -46

math.floor(45.7): 45

math.floor(-100.5): -101

math.floor(100.5): 100

以上就是向下取整函数的介绍,这个方法很方便,大家是可以轻松掌握的,要操作熟练哦~

以上是 如何使用python中的取整floor函数? 的全部内容, 来源链接: utcz.com/z/541552.html

回到顶部