使い方
tuple = divmod(a,b)
aをbで割った商とあまりをタプルで返します
tuple = divmod(7,2)
print(tuple)
#結果 (3,1)
7 ÷ 2= 3…1
a,bともに少数を使用することができますが、丸め誤差が出ます
tuple = divmod(a,b)
aをbで割った商とあまりをタプルで返します
tuple = divmod(7,2)
print(tuple)
#結果 (3,1)
7 ÷ 2= 3…1
a,bともに少数を使用することができますが、丸め誤差が出ます