Python divmod() 函数
2021-04-08 10:28
阅读:705
标签:说明 main htm class pre get pretty wan uil python divmod() 函数把除数和余数运算结果结合起来,返回一个包含商和余数的元组(a // b, a % b)。 在 python 2.3 版本之前不允许处理复数。每组词 www.cgewang.com 参数说明: Python divmod() 函数 标签:说明 main htm class pre get pretty wan uil 原文地址:https://www.cnblogs.com/yc10086/p/13379450.html函数语法
divmod(a, b)
实例
>>>divmod(7, 2) (3, 1) >>> divmod(8, 2) (4, 0) >>> divmod(1+2j,1+0.5j) ((1+0j), 1.5j)
下一篇:es6数组Arrary
评论
亲,登录后才可以留言!