“String to Binary Python” Kode Jawaban

Char to Binary Python

>>> st = "hello world"
>>> ' '.join(format(ord(x), 'b') for x in st)
'1101000 1100101 1101100 1101100 1101111 100000 1110111 1101111 1110010 1101100 1100100'

#using `bytearray`
>>> ' '.join(format(x, 'b') for x in bytearray(st, 'utf-8'))
'1101000 1100101 1101100 1101100 1101111 100000 1110111 1101111 1110010 1101100 1100100'
Healthy Heron

String to Binary Python

"hello".encode("ascii")
b"hello"
Arno Deceuninck

Jawaban yang mirip dengan “String to Binary Python”

Pertanyaan yang mirip dengan “String to Binary Python”

Lebih banyak jawaban terkait untuk “String to Binary Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya