Python math.ldexp() 方法

实例

返回 x * (2**i) 的值:

  1. # Import math Library
  2. import math
  3. # Return value of x * (2**i)
  4. print(math.ldexp(9, 3))
  5. print(math.ldexp(-5, 2))
  6. print(math.ldexp(15, 2))

定义与用法

math.ldexp() 方法返回;给定数字 x 和 i 的 x * (2**i),这是 math.frexp().


语法

  1. math.ldexp(x, i)

参数值

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

技术细节

返回值:x * (2**i) 的值
Python 版本:2.6

分类导航