python math.modf()
函数用于返回一个浮点数的整数和小数部分。
返回的类型是元组,返回的格式为(小数,整数)。
语法
语法如下:import math #导入math模块
math.modf( x )
参数
- x: 指定的浮点数,可以为负数
返回值
返回一个浮点数的整数和小数部分。
程序示例
#!/usr/bin/python
# coding=utf-8
import math
print ("math.modf(123.45) : ", math.modf(123.45))
print ( "math.modf(-123.45) : ", math.modf(123.45))# 可以为负数
print ( "math.modf(math.pi) : ", math.modf(math.pi))
程序运行结果:
math.modf(123.45) : (0.45000000000000284, 123.0)
math.modf(-123.45) : (0.45000000000000284, 123.0)
math.modf(math.pi) : (0.14159265358979312, 3.0)
math.modf(-123.45) : (0.45000000000000284, 123.0)
math.modf(math.pi) : (0.14159265358979312, 3.0)