Python3 math.fmod() 方法 -求余數(shù)

2023-04-25 11:47 更新

Python math 模塊 math 模塊


描述

Python math.fmod(x, y) 方法返回 x/y 的余數(shù)。


語(yǔ)法

math.fmod() 方法語(yǔ)法如下:

math.fmod(x, y)

參數(shù)說(shuō)明:

  • x -- 必需,正數(shù)或負(fù)數(shù)。被除數(shù)。如果 x 不是一個(gè)數(shù)字,返回 TypeError。
  • y -- 必需,正數(shù)或負(fù)數(shù)。除數(shù)。如果 y 不是一個(gè)數(shù)字,返回 TypeError。

注意:如果 x 和 y = 0,則返回 ValueError。

注意:如果 y = 0,則返回 ValueError。

注意:如果 x 或 y 不是數(shù)字,則返回 TypeError。


返回值

一個(gè)浮點(diǎn)值,表示 x/y 的余數(shù)


實(shí)例

以下實(shí)例計(jì)算余數(shù):

# 導(dǎo)入 math 包
import math

# 計(jì)算余數(shù)
print(math.fmod(20, 4))
print(math.fmod(20, 3))
print(math.fmod(15, 6))
print(math.fmod(-10, 3))

# 報(bào)錯(cuò),ValueError: math domain error
print(math.fmod(0, 0))

輸出結(jié)果:

0.0
2.0
3.0
-1.0
Traceback (most recent call last):
    File "/Users/RUNOOB/runoob-test/test.py", line 9, in <module>
    print(math.fmod(0, 0))
ValueError: math domain error

Python math 模塊 math 模塊


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)