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
相關用法
- Python dir()用法及代碼示例
- Python int()用法及代碼示例
- Python cmp()用法及代碼示例
- Python id()用法及代碼示例
- Python now()用法及代碼示例
- Python oct()用法及代碼示例
- Python tell()用法及代碼示例
- Python map()用法及代碼示例
- Python hex()用法及代碼示例
- Python ord()用法及代碼示例
- Python sum()用法及代碼示例
- Python Union()用法及代碼示例
注:本文由純淨天空篩選整理自jana_sayantan大神的英文原創作品 Python | fmod() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。