In Python how to Convert bytes to a string?

0
0

In Python, you can convert bytes to a string using the decode() method. Here’s an example:

b = b’hello world’
s = b.decode(‘utf-8’)
print(s)

In this example, the b variable contains a bytes object and we’re calling the decode() method on it to convert it to a string. The decode() method takes an encoding as an argument. In this case, we’re using the UTF-8 encoding, but you should use the encoding that matches the encoding used to encode the bytes object.

  • You must to post comments
Showing 0 results
Your Answer

Please first to submit.