Source Code:
(back to article)
b = b'hello' string = b.decode() print(string) string = str(b, 'utf-8') print(string)
Result:
Report an issue