python函数每日一讲 - divmod数字处理函数

kkkkk 2018年12月17日 23:07 Python函数

python每日一函数 - divmod数字处理函数

divmod(a,b)函数

中文说明:

divmod(a,b)方法返回的是a//b(除法取整)以及a对b的余数

返回结果类型为tuple

参数:

a,b可以为数字(包括复数)

版本:

在python2.3版本之前不允许处理复数,这个大家要注意一下


英文说明:

Take two (non complex) numbers as arguments and return a pair of numbers consisting of their quotient and remainder when using long division. With mixed operand types, the rules for binary arithmetic operators apply. For plain and long 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).


Changed in version 2.3: Using divmod() with complex numbers is deprecated.

python代码实例:

>>> divmod(9,2)
(4, 1)
>>> divmod(11,3)
(3, 2)
>>> divmod(1+2j,1+0.5j)
((1+0j), 1.5j)




文章评论(0)
  • avatar kkkkkk 2018年12月21日 11:31
    差劲
    kkkkk
    2018年12月21日 11:16
    本文紧扣材料,提出中心论点,进而由现象到本质,扣住概念本身加以阐释,并推论到其他。符合题意,内容充实。论述过程有条不紊地深入分析,摆事实讲道理,论述简洁。文章分析深刻,很好地体现了辩证思维,材料较丰富。
    回复
  • avatar kkkkkk 2018年12月21日 11:31
    给跪了
    kkkkklxinde
    2018年12月21日 11:17
    本文从投票者的角度切入立论,广泛联系社会现实中的同类现象,有效拓展了题材范围,深入阐述主题内涵,彰显深刻,语言流畅有气势,颇为雄辩。立意剑走偏锋,较为危险。
    回复
  • avatar kkkkklxinde 2018年12月21日 11:17
    本文从投票者的角度切入立论,广泛联系社会现实中的同类现象,有效拓展了题材范围,深入阐述主题内涵,彰显深刻,语言流畅有气势,颇为雄辩。立意剑走偏锋,较为危险。
    回复
  • avatar kkkkk 2018年12月21日 11:16
    本文紧扣材料,提出中心论点,进而由现象到本质,扣住概念本身加以阐释,并推论到其他。符合题意,内容充实。论述过程有条不紊地深入分析,摆事实讲道理,论述简洁。文章分析深刻,很好地体现了辩证思维,材料较丰富。
    回复