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

Python3 数字Number Pow 方法

#!/usr/bin/python3
import math   # This will import math module

print ("math.pow(100, 2) : ", math.pow(100, 2))
print ("math.pow(100, -2) : ", math.pow(100, -2))
print ("math.pow(2, 4) : ", math.pow(2, 4))
print ("math.pow(3, 0) : ", math.pow(3, 0))

目录

分类