英語ドキュメント:
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'>2. パラメータ x が整数でない場合、x は __index__() メソッドを定義し、メソッドの戻り値は整数でなければなりません。 2.1 オブジェクトが整数でない場合、エラーが報告されます
>>> 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 integer2.2 オブジェクトが __index__ メソッドを定義しているが、戻り値が整数ではない場合、エラーが報告されます
>>> 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)2.3 オブジェクトが __index__ を定義している場合、エラーが報告されます_index__メソッドの戻り値はバイナリ文字列に変換されます
>>> class C: def __index__(self): return 3 >>> c = C() >>> bin(c) '0b11'🎜
以上がPython の組み込み bin 関数の詳細な紹介の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。