Python3 数字Number Modf 方法 Python3 数字Number Min 方法 Python3 数字Number Pow 方法 Python3 数字Number Modf 方法 #!/usr/bin/python3 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(119) : ", math.modf(119)) print ("math.modf(math.pi) : ", math.modf(math.pi)) Python3 数字Number Min 方法 Python3 数字Number Pow 方法