在 Python 中,您可以使用各種方法輕鬆取得字串的二進位表示。
<code class="python">st = "hello world" binary_rep = ' '.join(format(ord(x), 'b') for x in st) print(binary_rep)</code>
此方法迭代字串中的每個字符,將其Unicode 代碼點轉換為整數,然後使用format 函數將其格式化為二進位表示形式。
<code class="python">st = "hello world" binary_rep = ' '.join(format(x, 'b') for x in bytearray(st, 'utf-8')) print(binary_rep)</code>
此方法將字串轉換為 bytearray(位元組陣列),然後將每個位元組格式化為二進位表示。此方法考慮特定編碼(例如,本例中為“utf-8”)並適當處理非 ASCII 字元。
以上是如何在 Python 中將字串轉換為二進位表示形式?的詳細內容。更多資訊請關注PHP中文網其他相關文章!