在 Python 中将字符串转换为二进制
在 Python 中,有多种方法将字符串转换为其二进制表示形式。
使用 'ord' 函数:
此方法使用 ord() 函数获取字符串中每个字符的 Unicode 代码点。然后使用 format() 函数将代码点转换为二进制。
<code class="python">import functools def toBinary(st): return ' '.join(format(ord(x), 'b') for x in st)</code>
使用 'bytearray':
或者,您可以使用 Python 的 bytearray 类将字符串表示为字节序列。然后可以使用 format() 函数将每个字节转换为二进制。
<code class="python">def toBinary(st): return ' '.join(format(x, 'b') for x in bytearray(st, 'utf-8'))</code>
这是一个示例:
<code class="python">st = "hello world" print(toBinary(st)) # OR print(' '.join(format(ord(x), 'b') for x in st)) # Output: 1101000 1100101 1101100 1101100 1101111 100000 1110111 1101111 1110010 1101100 1100100</code>
以上是如何在 Python 中将字符串转换为二进制?的详细内容。更多信息请关注PHP中文网其他相关文章!