Python math.fmod() 方法
math.fmod() 方法是 math 模块的库方法,用于求模数或给定数,其中第一个参数是被除数,第二个参数是除数。它接受两个参数并以浮点类型返回模数。
注意:math.fmod() 可用于获取正负整数、正负浮点数的模数/余数。
math.fmod() 方法的语法:
math.fmod(a, b)
参数: a, b
– 数字(正数或负数,整数或浮点数)。
返回值: float
– 它返回一个浮点值,它是给定数字的余数(模数)a, b
。
例:
Input: a = -10 b = 3 # function call print(math.fmod(a,b)) Output: -1.0
用于演示 math.fmod() 方法示例的 Python 代码
# Python code to demonstrate example of
# fmod() method
# importing math
import math
# integer positive numbers
a = 10
b = 3
# calculating modules
result = math.fmod(a,b)
print("result = ", result)
# integer negative numbers
a = -10
b = 3
result = math.fmod(a,b)
print("result = ", result)
# float positive numbers
a = 10.123
b = 3.12
result = math.fmod(a,b)
print("result = ", result)
# float negative numbers
a = -10.123
b = 3.12
result = math.fmod(a,b)
print("result = ", result)
输出
result = 1.0 result = -1.0 result = 0.762999999999999 result = -0.762999999999999
相关用法
- Python math.fsum()用法及代码示例
- Python math.fabs()用法及代码示例
- Python math.frexp()用法及代码示例
- Python math.floor()用法及代码示例
- Python math.factorial()用法及代码示例
- Python math.cos()用法及代码示例
- Python math.cosh()用法及代码示例
- Python math.acosh()用法及代码示例
- Python math.remainder()用法及代码示例
- Python math.asinh()用法及代码示例
- Python math.atanh()用法及代码示例
- Python math.log1p()用法及代码示例
- Python math.gcd()用法及代码示例
- Python math.isqrt()用法及代码示例
- Python math.ldexp()用法及代码示例
- Python math.acos()用法及代码示例
- Python math.sin()用法及代码示例
- Python math.sqrt()用法及代码示例
- Python math.asin()用法及代码示例
- Python math.dist()用法及代码示例
注:本文由纯净天空筛选整理自 math.fmod() method with example in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。