数学函数log() 数学函数floor() 数学函数log10() 描述 方法log()返回x的自然对数,对于x> 0。 语法 以下是log()方法的语法: import math math.log( x ) 注意: 这个函数不能直接访问,所以我们需要导入math模块,然后我们需要使用数学静态对象调用这个函数。 参数 x -- 数值表达式。 返回值 此方法返回x的自然对数,对于x> 0。 实例 以下展示了使用 log() 方法的实例: #!/usr/bin/python import math # This will import math module 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 数学函数floor() 数学函数log10()