Python divmod() 函数
定义和用法
The divmod()
函数返回一个包含商和余数的元组,其中参数 1(被除数)除以参数 2(除数)。
语法
divmod(dividend, divisor)
参数值
参数 | 描述 |
---|---|
dividend | 一个数字。要除的数字 |
divisor | 一个数字。要除以的数字 |
The divmod()
函数返回一个包含商和余数的元组,其中参数 1(被除数)除以参数 2(除数)。
divmod(dividend, divisor)
参数 | 描述 |
---|---|
dividend | 一个数字。要除的数字 |
divisor | 一个数字。要除以的数字 |
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]