Easy Tutorial
❮ Python Os Chroot Python Att List Clear ❯

Python3 log() Function

Python3 Numbers


Description

The log() method returns the natural logarithm of x, where x > 0.


Syntax

Here is the syntax for the log() method:

import math

math.log( x )

Note: The log() method cannot be accessed directly; it requires importing the math module and calling this method on the static object.


Parameters


Return Value


Example

The following example demonstrates the use of the log() method:

#!/usr/bin/python3
import math   # Import the math module

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))

The output of the above example is:

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

Python3 Numbers

❮ Python Os Chroot Python Att List Clear ❯