codecamp

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

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 模块


Python3 math.factorial()方法 -求阶乘
Python3 math.frexp()方法 -求尾数和指数
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

相关教程

Python基础教程

python内置库

python3 math模块

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }