Python3 math.fmod() 方法 -求余数

2023-04-25 11:47 更新

Python math 模块 math 模块


描述

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


语法

math.fmod() 方法语法如下:

math.fmod(x, y)

参数说明:

  • x -- 必需,正数或负数。被除数。如果 x 不是一个数字,返回 TypeError。
  • y -- 必需,正数或负数。除数。如果 y 不是一个数字,返回 TypeError。

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

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

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


返回值

一个浮点值,表示 x/y 的余数


实例

以下实例计算余数:

# 导入 math 包
import math

# 计算余数
print(math.fmod(20, 4))
print(math.fmod(20, 3))
print(math.fmod(15, 6))
print(math.fmod(-10, 3))

# 报错,ValueError: math domain error
print(math.fmod(0, 0))

输出结果:

0.0
2.0
3.0
-1.0
Traceback (most recent call last):
    File "/Users/RUNOOB/runoob-test/test.py", line 9, in <module>
    print(math.fmod(0, 0))
ValueError: math domain error

Python math 模块 math 模块


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号