Python math.frexp() 方法
math.frexp() 方法是 math 模块的库方法,用于获取给定数字的尾数和 index 对,它接受一个数字(整数或浮点数)并返回给定数字的尾数和 index 的元组,其中尾数是浮点值, index 是整数值。
其中,尾数和 index 的组合应该是,数字=尾数*2** index 。
注意:如果传递除数字以外的任何内容,该方法将返回类型错误,“TypeError:a float is required”。
math.frexp() 方法的语法:
math.frexp(n)
参数: a
– 一个数字(浮点数/整数)。
返回值: tuple
– 它返回一个包含给定数字的尾数和 index 部分的元组n
。
例:
Input: a = 10 # function call print(math.frexp(a)) Output: (0.625, 4)
用于演示 math.frexp() 方法示例的 Python 代码
# Python code demonstrate example of
# math.frexp() method
import math
# numbers
a = 0
b = 10
c = -10
d = 10.234
e = -10.234
# printing the mantissa and exponent
print("frexp(a):", math.frexp(a))
print("frexp(b):", math.frexp(b))
print("frexp(c):", math.frexp(c))
print("frexp(d):", math.frexp(d))
print("frexp(e):", math.frexp(e))
输出
frexp(a): (0.0, 0) frexp(b): (0.625, 4) frexp(c): (-0.625, 4) frexp(d): (0.639625, 4) frexp(e): (-0.639625, 4)
相关用法
- Python math.fmod()用法及代码示例
- Python math.fsum()用法及代码示例
- Python math.fabs()用法及代码示例
- Python math.floor()用法及代码示例
- Python math.factorial()用法及代码示例
- Python math.cos()用法及代码示例
- Python math.cosh()用法及代码示例
- Python math.acosh()用法及代码示例
- Python math.remainder()用法及代码示例
- Python math.asinh()用法及代码示例
- Python math.atanh()用法及代码示例
- Python math.log1p()用法及代码示例
- Python math.gcd()用法及代码示例
- Python math.isqrt()用法及代码示例
- Python math.ldexp()用法及代码示例
- Python math.acos()用法及代码示例
- Python math.sin()用法及代码示例
- Python math.sqrt()用法及代码示例
- Python math.asin()用法及代码示例
- Python math.dist()用法及代码示例
注:本文由纯净天空筛选整理自 math.frexp() method with example in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。