codecamp

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

Python math 模块  math 模块


描述

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

本函数要求Python的最低版本为python3.7!

另外:

在 Python 中,% 运算符是模运算符,它返回除法的余数。例如,10 % 3 的结果是 1,因为 10 除以 3 的商是 3,余数是 1。与此不同的是,math.remainder() 函数返回 IEEE 754 标准下 x/y 的余数,其中 x 和 y 是浮点数。如果 x/y 恰好处于两个连续整数之间的中间,则返回偶数整数。例如,math.remainder(10, 3) 的结果是 -1.0,因为它等于 10 - (-3) * (-4),而不是等于 10 - (-3) * (-3)。

总的来说,% 运算符和 math.remainder() 函数都可以用于计算余数,但它们的行为略有不同。如果你需要计算两个浮点数的余数,则应该使用 math.remainder() 函数。


语法

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

math.remainder(x, y)

参数说明:

  • x -- 必需,被除数。
  • y -- 可选,除数。必须是非零数字,否则会发生 ValueError。

返回值

一个浮点值,返回余数。


实例

以下实例计算余数:

# 导入 math 包
import math

# x/y 的余数
print (math.remainder(9, 2))
print (math.remainder(9, 3))
print (math.remainder(18, 4))

print (math.remainder(23.5, 5))
print (math.remainder(23, 5.5))
print (math.remainder(12.5, 2.5))
print (math.remainder(12, 2))

输出结果:

1.0
0.0
2.0
-1.5
1.0
0.0
0.0

Python math 模块  math 模块


Python3 math.prod() 方法 - 求积
Python3 math.sin() 方法 -求正弦值
温馨提示
下载编程狮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; }