Python 数字Number Exp() 方法 Python 数字Number Cmp() 方法 Python 数字Number fabs() 方法 Python 数字Number Exp() 方法 #!/usr/bin/python import math # This will import math module print "math.exp(-45.17) : ", math.exp(-45.17) print "math.exp(100.12) : ", math.exp(100.12) print "math.exp(100.72) : ", math.exp(100.72) print "math.exp(119L) : ", math.exp(119L) print "math.exp(math.pi) : ", math.exp(math.pi) Python 数字Number Cmp() 方法 Python 数字Number fabs() 方法