Python/ref math fmod

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python math.fmod()方法

Methods数学方法

返回x / y的余数:

    # Import math Library
import math 

# Return the remainder of x/y
print(math.fmod(20, 
    4))
print(math.fmod(20, 3))

    print(math.fmod(15, 6))
print(math.fmod(-10, 3))
print(math.fmod(0, 0))

定义和用法

The math.fmod() 方法返回x / y的余数(模)。

句法

math.fmod(x, y)

参数值

参数 描述
x 需要。正数或负数相除
y 需要。正数或负数相除

x with

注意: 如果x和y都等于0,则返回ValueError。

注意: 如果y = 0,则返回ValueError。

注意: 如果x或y不是数字,则返回TypeError。

技术细节

返回值: A

float 值,代表x / y的余数

Python版本: 1.4

Methods数学方法