python里有内置的求对数的函数么4
发布网友
发布时间:2023-11-03 15:48
我来回答
共2个回答
热心网友
时间:2024-11-25 13:36
在python中有内置的求对数的函数。
log()方法返回x的自然对数,对于x>0。
语法
以下是log()方法的语法:
#!/usr/bin/python
import math # This will import math mole
print "math.log(100.12) : ", math.log(100.12)
print "math.log(100.72) : ", math.log(100.72)
print "math.log(119L) : ", math.log(119L)
print "math.log(math.pi) : ", math.log(math.pi)
当我们运行上面的程序,它会产生以下结果:
math.log(100.12) : 4.60636946656
math.log(100.72) : 4.61234438974
math.log(119L) : 4.77912349311
math.log(math.pi) : 1.14472988585
热心网友
时间:2024-11-25 13:37
在模块math中有,举例:
假设要显示log2 8的结果,代码如下:
import math
print math.log(8,2)
注意底数与真数的位置