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