Python 3 – Number log() 方法

Python 3 – Number log() 方法

描述

log() 方法返回 x 的自然对数,其中 x > 0。

语法

以下是 log() 方法的语法−

import math

math.log( x )

注意 − 此函数不可直接访问,因此我们需要导入 math 模块,然后使用 math 静态对象调用此函数。

参数

x − 这是一个数字表达式。

返回值

该方法返回 x 的自然对数,其中 x > 0。

示例

以下示例演示了如何使用 log() 方法。

#!/usr/bin/python3
import math   # 这将导入 math 模块

print ("math.log(100.12) : ", math.log(100.12))
print ("math.log(100.72) : ", math.log(100.72))
print ("math.log(math.pi) : ", math.log(math.pi))

输出

运行上面的程序将产生以下结果 –

math.log(100.12) :  4.6063694665635735
math.log(100.72) :  4.612344389736092
math.log(math.pi) :  1.1447298858494002

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程