python-small-examples
@author jackzhenguo @desc @date 2019/2/10
8 取商和余数
分别取商和余数
In
[
1
]:
divmod
(
10
,
3
)
Out
[
1
]:
(
3
,
1
)
[上一个例子](/python-small-examples/md/7.html) [下一个例子](/python-small-examples/md/9.html)