python函数 – bin()
《python函数每日一讲》专题上周一直在和大家分享python的内置函数,都是按照字母排序来讲解的,但是上周讲解的4个函数都是不太常用的,今天我很高兴,呵呵,因为今天我要和大家分享一个很常用的函数:bin()函数
bin(x)
英文说明:Convert an integer number to a binary string. The result is a valid Python expression. If x is not a Python int object, it has to define an __index__() method that returns an integer.
New in version 2.6.
中文说明:将整数x转换为二进制字符串,如果x不为Python中int类型,x必须包含方法__index__()并且返回值为integer;
参数x:整数或者包含__index__()方法切返回值为integer的类型;
版本:bin函数是python2.6中新增函数,使用时要注意版本问题。
实例讲解:
#整数的情况 >>> bin(521) #这里的显示结果形式与我们平时习惯有些差别,主要是前面多了0b,这是表示二进制的意思。 "0b1000001001" #非整型的情况,必须包含__index__()方法切返回值为integer的类型 >>> class myType: ... def __index__(self): ... return 35 >>> myvar = myType() >>> bin(myvar) "0b1000001001"
PS:改函数非常简单,但是要注意版本,和参数类型。
来源:PY学习网:原文地址:https://www.py.cn/article.html