<languages />
❮内置功能
显示商和5的余数除以2:
x = divmod(5, 2)
The divmod() 当参数1(除数)除以参数2(除数)时,函数返回一个包含商和余数的元组。
divmod()
divmod(divident, divisor)