Python math.ldexp() 方法
Python math.ldexp(x, i) 方法返回 x * (2**i),math.frexp() 的反函数。
Python 版本:2.6
语法
math.ldexp() 方法语法如下:
math.ldexp(x, i)
参数说明:
- x -- 必需,一个正数或负数。如果值不是数字,则返回 TypeError。
- i -- 必需,一个正数或负数。如果值不是数字,则返回 TypeError。
返回值
一个浮点值,返回 x * (2**i)
以下实例计算 x * (2**i):
实例代码
# 导入 math 包
import math
# 返回 x * (2**i)
print(math.ldexp(9, 3))
print(math.ldexp(-5, 2))
print(math.ldexp(15, 2))
import math
# 返回 x * (2**i)
print(math.ldexp(9, 3))
print(math.ldexp(-5, 2))
print(math.ldexp(15, 2))
输出结果:
72.0 -20.0 60.0