Calculate logarithm in python

前端 未结 4 1472
鱼传尺愫
鱼传尺愫 2021-02-03 19:05

I am wondering why the result of log base 10 (1.5) in python = 0.405465108108 while the real answer = 0.176091259.

This is the code that I wrote:

         


        
4条回答
  •  攒了一身酷
    2021-02-03 19:23

    From the documentation:

    With one argument, return the natural logarithm of x (to base e).

    With two arguments, return the logarithm of x to the given base, calculated as log(x)/log(base).

    But the log10 is made available as math.log10(), which does not resort to log division if possible.

提交回复
热议问题