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


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


Python math.modf() 方法

math.modf() 方法是 math 模塊的一個庫方法,用於獲取一個數的小數部分和整數部分。它接受一個數字(整數或浮點數)並返回一個包含數字的小數部分和整數部分的元組。

注意:

  • 數字的整數部分也以浮點數形式返回
  • 如果數字是整數,小數部分將為 0.0
  • 如果數字是負數,則兩部分都是負數
  • 如果傳遞除數字以外的任何內容,該方法將返回類型錯誤“TypeError:a float is required”

math.modf() 方法的語法:

    math.modf(n)

參數: n– 整數或浮點數。

返回值: tuple– 它返回一個包含數字的小數部分和整數部分的元組n

例:

    Input:
    a = 10.23

    # function call
    print(math.modf(a))

    Output:
    (0.23000000000000043, 10.0)

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

# Python code demonstrate example of 
# math.modf() method

# importing math module
import math

# numbers 
a = 10
b = 10.23
c = -10
d = -10.23

# printing the fractional and integer part 
# of the numbers by using math.modf()

print("modf(a):", math.modf(a))
print("modf(b):", math.modf(b))
print("modf(c):", math.modf(c))
print("modf(d):", math.modf(d))

輸出

modf(a): (0.0, 10.0)
modf(b): (0.23000000000000043, 10.0)
modf(c): (-0.0, -10.0)
modf(d): (-0.23000000000000043, -10.0)


相關用法


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