Print without b’ prefix for bytes in Python 3

Use decode:

>>> print(b'hello'.decode())
hello

Leave a Comment