求 x 除以 y 的余数。
math.fmod(x,y)复制
math.fmod(x,y)
def test(): ret=math.fmod(5,3) print(ret)复制
def test():
ret=math.fmod(5,3)
print(ret)