Python Function Reference

math.log10
Return the base-10 logarithm of x.
Python 3.13
math.log10(x)
x
The number to find the logarithm of.
Examples
Python 3.13
>>> import math
>>> math.log10(100)
2.0