📜  Python| fmod()函数

📅  最后修改于: 2022-05-13 01:54:50.226000             🧑  作者: Mango

Python| fmod()函数

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

示例 #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