>>> import math #导入数学模块
>>> math.log(8,2) #计算以2为底 8的对数
3.0
>>> math.log(100,10) #计算以10 为底,100的对数
2.0
>>> math.log10(100) #专门有一个方法来计算以10为底的对数
2.0
>>> math.log(math.e) #专门计算以自然对数为底的对数
1.0
>>> math.log(2*math.e)
1.6931471805599452
>>> math.log(math.e*math.e)
2.0
后续遇到什么数学问题再补充
by freemao
FAFU
[email protected]
用python处理数学问题
时间: 2024-10-06 02:29:21