Python中小数取整的方法有以下几种:
向下取整:使用math.floor()
函数。例如,math.floor(3.14)
将返回3。
向上取整:使用math.ceil()
函数。例如,math.ceil(3.14)
将返回4。
四舍五入:使用round()
函数。例如,round(3.14)
将返回3,round(3.6)
将返回4。
向零取整:使用int()
函数。例如,int(3.14)
将返回3。
需要注意的是,这些方法的返回值都是整数类型。如果需要保留小数位数,可以使用字符串格式化或者decimal
模块等方法。