divmod()

divmod()

  python divmod() 函数把除数和余数运算结果结合起来,返回一个包含商和余数的元组(a // b, a % b)。

  不支持复数.很多文档中说可以支持处理复数.但是这里试是报错的.

语法:

  divmod(a,b)

代码示例:

  

a = divmod(8, 3)
b = divmod(5, 3)
c = divmod(-11.53, 3)

print(a, b, c, sep='\n', end='')

打印结果:

(2, 2)
(1, 2)
(-4.0, 0.47000000000000064)

 

不支持复数

d = divmod(1+2j, 1-0.5j)
print(d)

打印结果如下:

TypeError: can't take floor or mod of complex number.

 

posted @ 2022-05-10 23:13  Avicii_2018  阅读(231)  评论(0编辑  收藏  举报