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:
math.log10(1.5)
Use the log10 function in the math module.