python modf() 函数

Python modf() 函数

描述

modf(x) 函数返回 x 的整数部分与小数部分,两部分的数值符号与 x 相同,整数部分以浮点型表示。

语法

import math
math.modf(x)

注意:modf() 函数不能直接访问,需要导入 math 模块,通过静态对象调用该方法。

参数

x 数值表达式

返回值

modf() 函数返回x 的整数部分与小数部分,两部分的数值符号与 x 相同,整数部分以浮点型表示。

实例

# -*- coding: UTF-8 -*-
import math   # 导入 math 模块

print "math.modf(23.3) : ", math.modf(23.3)
print "math.modf(100) : ", math.modf(100)
print "math.modf(119L) : ", math.modf(119L)
print "math.modf(math.pi) : ", math.modf(math.pi)

输出:

math.modf(23.3) :  (0.3000000000000007, 23.0)
math.modf(100) :  (0.0, 100.0)
math.modf(119L) :  (0.0, 119.0)
math.modf(math.pi) :  (0.14159265358979312, 3.0)

你可能感兴趣的:(Python函数整理)