用法:
bin(x)
将整数转换为前缀为“0b” 的二进制字符串。结果是一个有效的 Python 表达式。如果
x
不是 Pythonint
对象,则它必须定义一个返回整数的__index__()
方法。一些例子:>>> bin(3) '0b11' >>> bin(-10) '-0b1010'
如果需要或不需要前缀“0b”,您可以使用以下任一方式。
>>> format(14, '#b'), format(14, 'b') ('0b1110', '1110') >>> f'{14:#b}', f'{14:b}' ('0b1110', '1110')
另请参阅
format()
了解更多信息。
相关用法
- Python binascii.crc32用法及代码示例
- Python binary转string用法及代码示例
- Python binary转ASCII用法及代码示例
- Python binascii.b2a_hex用法及代码示例
- Python bin()用法及代码示例
- Python bytes.isupper用法及代码示例
- Python base64.b64decode()用法及代码示例
- Python bokeh.plotting.figure.asterisk()用法及代码示例
- Python bytes.zfill用法及代码示例
- Python base64.b32decode()用法及代码示例
- Python bytearray()用法及代码示例
- Python bokeh.plotting.figure.annular_wedge()用法及代码示例
- Python bool()用法及代码示例
- Python bytes.isalpha用法及代码示例
- Python base64.b85encode()用法及代码示例
- Python bokeh.plotting.figure.circle()用法及代码示例
- Python bytes.hex用法及代码示例
- Python bz2.decompress(s)用法及代码示例
- Python bokeh.plotting.figure.circle_cross()用法及代码示例
- Python bokeh.plotting.figure.bezier()用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 bin。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。