當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python math.fmod()用法及代碼示例


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


相關用法


注:本文由純淨天空篩選整理自 math.fmod() method with example in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。