I am wondering why the result of log base 10 (1.5) in python = 0.405465108108 while the real answer = 0.176091259.
log base 10 (1.5)
This is the code that I wrote:
The math.log function is to the base e, i.e. natural logarithm. If you want to the base 10 use math.log10.
e