Python math.remainder() 方法
示例
返回 x 对 y 的余数
# 导入 math 库
import math
# 返回 x/y 的余数
print (math.remainder(9, 2))
print (math.remainder(9, 3))
print (math.remainder(18, 4))
自己试试 »
定义和用法
The math.remainder()
方法返回 x 对 y 的余数。
语法
math.remainder(x, y)
参数值
参数 | 描述 |
---|---|
x | 必需。您要除的数字。 |
y | 必需。您要除以的数字。它必须是非零数,否则会发生 ValueError。 |
技术细节
返回值 | A float value, representing the remainder |
---|---|
Python 版本 | 3.7 |
更多示例
示例
返回 x/y 的余数
print (math.remainder(23.5, 5))
print (math.remainder(23, 5.5))
print (math.remainder(12.5, 2.5))
print (math.remainder(12, 2))
自己试试 »