Python math.ldexp() 方法

与星星私奔

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))

输出结果:

72.0
-20.0
60.0
版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com

目录[+]

取消
微信二维码
微信二维码
支付宝二维码