码迷,mamicode.com
首页 > 其他好文 > 详细

bin(x) 转换二进制

时间:2018-08-10 19:57:36      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:turn   define   进制   with   pytho   str   method   数字   ring   

bin(x) Convert an integer number to a binary string prefixed with “0b”. 转换一个整型数字为一个前缀是“0b”的二进制字符串 If x is not a Python int object, it has to define an __index__() method that returns an integer. 如果x不是 int 对象,必须定义一个返回整型的__index__() 方法
>>> bin(3)
‘0b11‘
>>> bin(-10)
‘-0b1010‘

bin(x) 转换二进制

标签:turn   define   进制   with   pytho   str   method   数字   ring   

原文地址:http://blog.51cto.com/sonlich/2157368

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!