Python math.log10() 方法
math.log10() 方法是 math 模塊的一個庫方法,用於獲取一個數字的以 2 為底的對數,它接受一個數字並返回給定數字的以 10 為底的對數。
math.log10() 方法比 log(x, 10) 給出更準確的結果。
注意:如果我們提供除數字以外的任何其他內容,該方法將返回一個 TypeError ——“TypeError:a float is required”。
math.log10() 方法的語法:
math.log10(x)
參數:x
– 是要計算以 10 為底的對數的數字。
返回值: float
– 它返回一個浮點值,它是數字的以 10 為底的對數x
。
例:
Input: x = 21 # function call print(math.log10(x)) Output: 1.3222192947339193
用於演示 math.log10() 方法示例的 Python 代碼
# python code to demonstrate example of
# math.log10() method
# importing math module
import math
# Base-10 logarithm
x = 21
print("Base-10 logarithm of ", x, " is = ", math.log10(x))
x = 10.23
print("Base-10 logarithm of ", x, " is = ", math.log10(x))
輸出
Base-10 logarithm of 21 is = 1.3222192947339193 Base-10 logarithm of 10.23 is = 1.0098756337121602
相關用法
- Python math.log1p()用法及代碼示例
- Python math.log2()用法及代碼示例
- Python math.log()用法及代碼示例
- Python math.ldexp()用法及代碼示例
- 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.gcd()用法及代碼示例
- Python math.frexp()用法及代碼示例
- Python math.isqrt()用法及代碼示例
- Python math.acos()用法及代碼示例
- Python math.sin()用法及代碼示例
- Python math.sqrt()用法及代碼示例
- Python math.asin()用法及代碼示例
注:本文由純淨天空篩選整理自 math.log10() method with example in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。