Python内置函数(17)——divmod

英文文档:

divmod(a, b)

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).

说明:

  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)
>>> math.floor(5.5/2)
2
>>> 5.5/2
2.75
>>> math.floor(5.5/2.0)
2
>>> 5.5%2
1.5

作者:〖十月狐狸〗

出处:http://www.cnblogs.com/sesshoumaru/

欢迎任何形式的转载,但请务必注明出处。

本人水平有限,如果文章和代码有表述不当之处,还请不吝赐教。

原文地址:https://www.cnblogs.com/sesshoumaru/p/5993701.html