Answers for "byte array convert to string python"

34

bytes to string 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'
Posted by: Guest on March-30-2020
1

how to convert a byte array to string in 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
Posted by: Guest on November-23-2021

Code answers related to "byte array convert to string python"

Python Answers by Framework

Browse Popular Code Answers by Language