math.log10() - get the base 10 logarithm of a number

PHOTO EMBED

Sun Jun 23 2024 13:51:27 GMT+0000 (Coordinated Universal Time)

Saved by @pynerds #python

import math 

print(math.log10(10))
print(math.log10(50))
print(math.log10(100))
print(math.log10(200))
print(math.log10(1000))
content_copyCOPY

https://www.pynerds.com/python-math-log10-function/