除法的运算
‘/’ 无论是否整除返回的都是 float ,暂且叫它精确除法
例如 :
2/3 0.6666666666666666
'%' 取余数 返回除法的余数
例如 :
2%3 2 3%2 1
‘//’无论是否整除返回的都是 int ,是底板除支取整数部分,小数部分舍弃
例如 :
2//3 0 3//2 1
向上向下取整
要先导入模块 math 向上取整 math.ceil() 返回值为 int
import math >>> math.ceil(1.1) 2 >>> math.ceil(100.1) 101
向下取整
math.floor() 返回值为 int>>> math.floor(2.1) 2 >>> math.floor(202.9) 202
四舍五入
内置函数 round() 返回值为 int>>> round(25.1) 25 >>> round(21.9) 22
好啦,以上就是关于取整的几种方式了,大家仔细看几遍就肯定能了解了,内容不多,但是非常适合实际的应用哦~如果大家还想了解更多的学习内容,请点击python学习网进行学习哦~