Python math.frexp() 方法
实例
查找数字的尾数和指数:
#Import math Library
import math
#Return mantissa and exponent of a given number
print(math.frexp(4))
print(math.frexp(-4))
print(math.frexp(7))
定义与用法
math.frexp()
方法将指定数字的尾数和指数成对返回(m,e)。
此方法的数学公式为:number=m2*e.
语法
math.frexp(x)
参数值
参数 | 描述 |
---|---|
x | 必填。正数或负数。如果该值不是数字,则返回 TypeError |
技术细节
返回值: | 一个 tuple 值,表示x的尾数和指数,作为一对(m,e)。尾数作为浮点指数返回,作为整数返回 |
---|---|
Python 版本: | 2.6 |