divmod関数
この関数は、商と剰余をいっしょに求めます。結果はtuple型として返されます。
>>> a = divmod(100, 3) >>> print a (33, 1) >>> print a[0] 33 >>>
ホーム