英語ドキュメント:
bin
(x ) 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__()
__index__()
メソッドを定義する必要があります。説明:
1. 整数値をバイナリ文字列に変換します>>> b = bin(3) >>> b '0b11' >>> type(b) #获取b的类型 <class 'str'>
>>> class A: pass >>> a = A() >>> bin(a) Traceback (most recent call last): File "<pyshell#15>", line 1, in <module> bin(a) TypeError: 'A' object cannot be interpreted as an integer
>>> class B: def __index__(self): return "3" >>> b = B() >>> bin(b) Traceback (most recent call last): File "<pyshell#21>", line 1, in <module> bin(b) TypeError: __index__ returned non-int (type str)
>>> class C: def __index__(self): return 3 >>> c = C() >>> bin(c) '0b11'
以上がPython の組み込み bin 関数の詳細な紹介の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。