Python/ref math frexp

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python math.frexp()方法

Methods数学方法

找出数字的尾数和指数:

    #Import math Library
import math 

#Return mantissa and exponent 
    of numbers
print(math.frexp(4))
print(math.frexp(-4))
print(math.frexp(7))

定义和用法

The math.frexp() 方法返回尾数和指定数字的指数,成对( m , e ).

此方法的数学公式为:number = m * 2 **e .

句法

math.frexp(x)

参数值

参数 描述
x 需要。正数或负数。如果该值不是数字,则返回TypeError

技术细节

返回值: A

tuple 值,表示的尾数和指数 x ,作为一对(m,e)。尾数作为浮点数指数返回为整数

Python版本: 2.6

Methods数学方法