Python math.remainder() 方法
math.remainder() 方法是 math 模块的库方法,用于求给定数字的余数,它接受两个数字(整数或浮点数)并返回第一个数字相对于浮点数中第二个数字的余数。
注意: math.remainder() 方法在新版本的 Python 中可用 - Python 3.7
math.remainder() 方法的语法:
math.remainder(a, b)
参数: a, b
– 需要计算余数的数字。
返回值: float
– 它返回一个浮点值,它是a
关于b
。
例:
Input: a = 10 b = 7 # function call print(math.remainder(a, b)) Output: 3.0
用于演示 math.remainder() 方法示例的 Python 代码
# python code to demonstrate example of
# math.remainder() method
# importing math module
import math
# numbers
a = 10
b = 7
# finding remainder
print(math.remainder(a,b))
a = 10.2
b = 7.1
# finding remainder
print(math.remainder(a,b))
输出
3.0 3.0999999999999996
相关用法
- Python math.radians()用法及代码示例
- Python math.cos()用法及代码示例
- Python math.cosh()用法及代码示例
- Python math.acosh()用法及代码示例
- Python math.fmod()用法及代码示例
- Python math.fsum()用法及代码示例
- Python math.asinh()用法及代码示例
- Python math.atanh()用法及代码示例
- Python math.fabs()用法及代码示例
- Python math.log1p()用法及代码示例
- Python math.gcd()用法及代码示例
- Python math.frexp()用法及代码示例
- Python math.isqrt()用法及代码示例
- Python math.ldexp()用法及代码示例
- Python math.acos()用法及代码示例
- Python math.sin()用法及代码示例
- Python math.sqrt()用法及代码示例
- Python math.asin()用法及代码示例
- Python math.dist()用法及代码示例
- Python math.hypot()用法及代码示例
注:本文由纯净天空筛选整理自 math.remainder() method with example in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。