在 Python 3.3 及以上的版本,math.remainder(x, y) 方法用于返回 x 除以 y 的余数。这个方法与 Python 的内建函数 divmod(x, y) 不同,它仅返回余数部分。语法如下:
import math

result = math.remainder(x, y)

其中,x 是除数,y 是被除数。

例如,如果你想计算 7 除以 3 的余数,可以这样写:
import math

result = math.remainder(7, 3)
print(result)

这将输出 1.0,因为 7 除以 3 的余数是 1。需要注意的是,math.remainder() 的返回值总是浮点数。


转载请注明出处:http://www.zyzy.cn/article/detail/389/Python3