标签: python logarithm
我在python 2.7中看到基本10对数的奇怪行为。
int(log(10**6,10))
错误地返回5,而
int(log10(10**6))
正确返回6.这里发生了什么?