橘子味的心
标题:Python3 数字Number Log 方法

Python3 数字Number Log 方法

#!/usr/bin/python3
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(math.pi) : ", math.log(math.pi))

目录

分类