当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python fmod()用法及代码示例


fmod()函数是Python中的标准数学库函数之一,用于计算指定给定参数的模块。

用法: math.fmod( x, y )

参数:
x任何有效数字(正数或负数)。
y任何有效数字(正数或负数)。


返回:在计算给定参数x和y的模块后,返回浮点数值。

范例1:

# Python3 program to demonstrate fmod() function 
  
import math 
  
# Tuple Declaration 
Tup = (15, 22, -2, -40 ) 
  
# List Declaration 
Lis = [-89, 38, -39, 16]  
  
# modulus of +ve integer number 
print(math.fmod(4, 5)) 
print(math.fmod(43.50, 4.5)) 
  
# modulus of -ve integer number 
print(math.fmod(-17, 5)) 
print('%.2f' %math.fmod(-10, 4.78)) 
  
# modulus of tuple item 
print("\nModulus of tuple items:") 
print(math.fmod(Tup[2], 5)) 
print(math.fmod(Tup[2], -6)) 
  
# modulus of list item 
print("\nModulus of list items:") 
print(math.fmod(Lis[3], 4)) 
print(math.fmod(Lis[0], -15))

输出:

4.0
3.0
-2.0
-0.44

Modulus of tuple items:
-2.0
-2.0

Modulus of list items:
0.0
-14.0


范例2:ValueError和TypeError

  • 如果x和y参数均为零,则fmod()函数将输出返回为ValueError。
  • 如果y参数(第二个参数)为零,则fmod()函数将输出返回为ValueError。
  • 如果x值或y值不是数字,则fmod()函数将返回TypeError。
# Python3 program to demonstrate  
# errors in fmod() function 
  
import math 
  
# will give ValueError 
print(math.fmod(0, 0)) 
print(math.fmod(2, 0)) 
  
# it will give TypeError 
print(math.fmod('2', 3))

输出:

ValueError:math domain error
ValueError:math domain error
TypeError:a float is required


相关用法


注:本文由纯净天空筛选整理自jana_sayantan大神的英文原创作品 Python | fmod() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。