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


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


Python math.remainder() 方法

math.remainder() 方法是 math 模塊的庫方法,用於求給定數字的餘數,它接受兩個數字(整數或浮點數)並返回第一個數字相對於浮點數中第二個數字的餘數。

注意: math.remainder() 方法在新版本的 Python 中可用 - Python 3.7

math.remainder() 方法的語法:

    math.remainder(a, b)

參數: a, b– 需要計算餘數的數字。

返回值: float– 它返回一個浮點值,它是a關於b

例:

    Input:
    a = 10
    b = 7

    # function call
    print(math.remainder(a, b))

    Output:
    3.0

用於演示 math.remainder() 方法示例的 Python 代碼

# python code to demonstrate example of 
# math.remainder() method

# importing math module
import math

# numbers
a = 10
b = 7
# finding remainder
print(math.remainder(a,b))

a = 10.2
b = 7.1
# finding remainder
print(math.remainder(a,b))

輸出

3.0
3.0999999999999996


相關用法


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