バイナリを ASCII に変換し、その逆に戻す
指定されたコード スニペットは、文字列をバイナリ表現に変換します。そのメカニズムを理解するために、別のアプローチを分析してみましょう。
Python 2: ASCII 文字範囲
範囲 [ -~] 内の ASCII 文字について、Python 2 はより簡単な解決策:
import binascii n = int(binascii.hexlify('hello'), 16) binary_representation = bin(n)
このコードは、文字列 'hello' を
変換の逆変換
バイナリ表現を文字列に戻すには:
n = int('0b110100001100101011011000110110001101111', 2) string_representation = binascii.unhexlify('%x' % n)
これバイナリ表現を 16 進表現に変換してから、元の文字列に変換します。 'こんにちは。'
Python 3.2 :
Python 3.2 では追加メソッドが導入されました:
n = int.from_bytes('hello'.encode(), 'big') binary_representation = bin(n)
n = int('0b110100001100101011011000110110001101111', 2) string_representation = n.to_bytes((n.bit_length() + 7) // 8, 'big').decode()
Python での Unicode サポート3:
みんなを応援するPython 3 の Unicode 文字:
def text_to_bits(text, encoding='utf-8', errors='surrogatepass'): # ... def text_from_bits(bits, encoding='utf-8', errors='surrogatepass'): # ...
この関数は、Unicode 文字をサポートし、テキストとバイナリ表現の間で変換します。
以上がPython で ASCII 表現とバイナリ表現の間で変換するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。