math.log()
The math.log()
function returns the natural logarithm of a number or the logarithm of a number to the given base.
Syntax
math.log(n, base)
The math.log()
function takes the following parameters:
n
is a required number or numeric expression to calculate the logarithm.base
is an optional number to specify the logarithm base. The default value for the base ise
.
The math.log()
function returns a float
value, the natural logarithm of n
or the logarithm of n
to base
. If n
is 0
or a negative number, it returns a ValueError
.
Example
Use math.log()
to return the natural log of 12
(base e):
import mathprint(math.log(12))
The above code gives the following output:
2.4849066497880004
Codebyte Example
Run the following example that uses the math.log()
function to understand its working:
All contributors
- ishg-15328 total contributions
- cslylla58 total contributions
- christian.dinh2476 total contributions
- Anonymous contributorAnonymous contributor3071 total contributions
- Anonymous contributorAnonymous contributor186 total contributions
- ishg-153
- cslylla
- christian.dinh
- Anonymous contributor
- Anonymous contributor
Looking to contribute?
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.