Python 数字Number pow() 方法 Python 数字Number modf() 方法 Python 数字Number round() 方法 Python 数字Number pow() 方法 #!/usr/bin/python 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) Python 数字Number modf() 方法 Python 数字Number round() 方法