Python 数字Number log10() 方法 Python 数字Number log() 方法 Python 数字Number Max() 方法 Python 数字Number log10() 方法 #!/usr/bin/python import math # This will import math module print "math.log10(100.12) : ", math.log10(100.12) print "math.log10(100.72) : ", math.log10(100.72) print "math.log10(119L) : ", math.log10(119L) print "math.log10(math.pi) : ", math.log10(math.pi) Python 数字Number log() 方法 Python 数字Number Max() 方法