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)
相關用法
- Python math.cos()用法及代碼示例
- Python math.cosh()用法及代碼示例
- Python math.acosh()用法及代碼示例
- Python math.fmod()用法及代碼示例
- Python math.fsum()用法及代碼示例
- Python math.remainder()用法及代碼示例
- Python math.asinh()用法及代碼示例
- Python math.atanh()用法及代碼示例
- Python math.fabs()用法及代碼示例
- Python math.log1p()用法及代碼示例
- Python math.gcd()用法及代碼示例
- Python math.frexp()用法及代碼示例
- Python math.isqrt()用法及代碼示例
- Python math.ldexp()用法及代碼示例
- Python math.acos()用法及代碼示例
- Python math.sin()用法及代碼示例
- Python math.sqrt()用法及代碼示例
- Python math.asin()用法及代碼示例
- Python math.dist()用法及代碼示例
- Python math.hypot()用法及代碼示例
注:本文由純淨天空篩選整理自 math.modf() method with example in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。