Python/ref math frexp
来自菜鸟教程
<languages />
Python math.frexp()方法
例
找出数字的尾数和指数:
#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
|
Python版本: | 2.6 |