当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python math.log()用法及代码示例


Python math.log() 方法

math.log() 方法是 math 模块的一个库方法,用于求给定数以 e 为底的自然对数(默认)。它接受数字和底数(可选)并返回自然对数。

注意:如果我们提供除数字以外的任何其他内容,该方法将返回 TypeError - “TypeError:a float is required”。

math.log() 方法的语法:

    math.log(x [, base])

参数:

  • x- 是要计算其对数的数字。
  • base- 是一个可选参数,用于定义对数的任何特定底数。

返回值: float- 它返回一个浮点值,它是数字的自然对数或特定底数的对数x

例:

    Input:
    x = 21

    # function call
    print(math.log(x))

    Output:
    3.044522437723423

用于演示 math.log() 方法示例的 Python 代码

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

# importing math module
import math

# log() with 1 parameter
x = 21
print("Natural logarithm of ", x, " is = ", math.log(x))

# log() with 2 parameters
x = 21
base = 5
print("logarithm of ", x, " with base ", base, " is = ", math.log(x, base))

输出

Natural logarithm of  21  is =  3.044522437723423
logarithm of  21  with base  5  is =  1.8916681496081529


相关用法


注:本文由纯净天空筛选整理自 math.log() method with example in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。