Python3 floor()函数可以用来向下取整,它会返回大于或者等于给定参数的最小整数。
def floor(x): return x - (x%1)
Python3 floor()函数的使用方法如下:
在Python3中导入math模块,并使用floor()函数:
import math x = math.floor(5.5)
在Python3中使用math.ceil()函数:
import math x = math.ceil(5.5)
在Python3中使用math.trunc()函数:
import math x = math.trunc(5.5)
使用floor()函数进行向下取整时,需要注意以下几点:
下面给出一些Python3 floor()函数的实例:
# 正数 x = math.floor(5.5) print(x) # 输出:5 # 负数 x = math.floor(-5.5) print(x) # 输出:-6 # 浮点数 x = math.floor(3.14159) print(x) # 输出:3 # 复数 x = math.floor(3+4j) print(x) # 输出:3
Python3 floor()函数可以用来向下取整,它会返回大于或者等于给定参数的最小整数,使用时需要注意参数的类型,还可以使用math.ceil()函数和math.trunc()函数进行向上取整和截断取整。
本文链接:http://task.lmcjl.com/news/8671.html