“Como converter uma matriz de bytes em string no python” Respostas de código

bytes para amarrar python

# utf-8 is used here because it is a very common encoding, but you
# need to use the encoding your data is actually in.
bytes = b'abcde'
bytes.decode("utf-8") 
'abcde'
Nutty Narwhal

Como converter uma matriz de bytes em string no python

b = bytearray("test", encoding="utf-8")
# here test is encoded into a byte array 
str1 = bytes(b)
# the function bytes decodes it for us !!! 
print(str1)
#thank god for python
Amused Ant

Converter matriz de bytes em string


byte[] byteArray1 = { 80, 65, 78, 75, 65, 74 };
String str = new String(byteArray1, 0, 3, StandardCharsets.UTF_8);
Bored Bison

Respostas semelhantes a “Como converter uma matriz de bytes em string no python”

Perguntas semelhantes a “Como converter uma matriz de bytes em string no python”

Mais respostas relacionadas para “Como converter uma matriz de bytes em string no python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código