用法:
int.bit_length()
返回以二进制表示整数所需的位数,不包括符号和前导零:
>>> n = -37 >>> bin(n) '-0b100101' >>> n.bit_length() 6
更准确地说,如果
x
不为零,则x.bit_length()
是唯一的正整数k
使得2**(k-1) <= abs(x) < 2**k
。等效地,当abs(x)
足够小以具有正确舍入的对数时,则为k = 1 + int(log(abs(x), 2))
。如果x
为零,则x.bit_length()
返回0
。相当于:
def bit_length(self): s = bin(self) # binary representation: bin(-37) --> '-0b100101' s = s.lstrip('-0b') # remove leading zeros and minus sign return len(s) # len('100101') --> 6
3.1 版中的新函数。
相关用法
- Python int.bit_count用法及代码示例
- Python int.from_bytes用法及代码示例
- Python int.to_bytes用法及代码示例
- Python scipy integrate.trapz用法及代码示例
- Python int转exponential用法及代码示例
- Python integer转string用法及代码示例
- Python scipy interpolate.CubicHermiteSpline.solve用法及代码示例
- Python scipy interpolate.CubicSpline.solve用法及代码示例
- Python scipy integrate.cumtrapz用法及代码示例
- Python scipy interpolate.PchipInterpolator.solve用法及代码示例
- Python integer转roman用法及代码示例
- Python scipy integrate.simps用法及代码示例
- Python scipy interpolate.Akima1DInterpolator.solve用法及代码示例
- Python int()用法及代码示例
- Python inspect.Parameter.replace用法及代码示例
- Python inspect.Parameter.kind用法及代码示例
- Python inspect.Signature.from_callable用法及代码示例
- Python inspect.isasyncgenfunction用法及代码示例
- Python inspect.isawaitable用法及代码示例
- Python inspect.BoundArguments.apply_defaults用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 int.bit_length。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。