python-small-examples/md/8.md at master · data-python/python-small-examples

Skip to content

Navigation Menu

Sign in

Appearance settings

Latest commit

File metadata and controls

14 lines (11 loc) · 163 Bytes

@author jackzhenguo
@desc 
@date 2019/2/10

8 取商和余数  

分别取商和余数

In [1]: divmod(10,3)
Out[1]: (3, 1)