python中的除法,取整和求模

  1. /是精确除法,//是向下取整除法,%是求模
  2. %求模是基于向下取整除法规则的
  3. 四舍五入取整round, 向零取整int, 向下和向上取整函数math.floor, math.ceil
  4. //和math.floor在CPython中的不同
  5. /在python 2 中是向下取整运算
  6. C中%是向零取整求模。

你可能感兴趣的:(python中的除法,取整和求模)