“string para python binário” Respostas de código

char para python binário

>>> 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 para python binário

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

Respostas semelhantes a “string para python binário”

Perguntas semelhantes a “string para python binário”

Mais respostas relacionadas para “string para python binário” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código