python when函数_Python3.6内置函数(17)——divmod()

英文文档

Take two (non complex) numbers as arguments and return a pair of numbers consisting of their quotient and remainder when using integer division. With mixed operand types, the rules for binary arithmetic operators apply. For integers, the result is the same as (a // b, a % b). For floating point numbers the result is (q, a % b), where q is usually math.floor(a / b) but may be 1 less than that. In any case q * b + a % b is very close to a, if a % b is non-zero it has the same sign as b, and 0 <= abs(a % b) < abs(b).

divmod()

1、接受两个数值(非复数),返回两个数值的相除得到的商,和余数组成的元组。

2、如果参数都是整数,执行的是地板除,相当于 (a//b,a%b)。>>> divmod(5, 2)

(2, 1)

>>> 5//2

2

>>> 5%2

1

3、如果参数是浮点数,相当于( math.floor(a/b),a%b)。>>> divmod(5.5, 2)

(2.0, 1.5)

>>> import math

>>> math.floor(5.5/2)

2

>>> 5.5/2

2.75

>>> math.floor(5.5/2.0)

2

>>> 5.5%2

1.5

小结

希望通过上面的操作能帮助大家。如果你有什么好的意见,建议,或者有不同的看法,希望你留言和我进行交流、讨论。

欢迎关注微信公众号,访问更多精彩:数据之魅。

如需转载,请联系授权,谢谢合作。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值