In python 2: ``` >>> str(bytearray([97])) 'a' ``` In python 3: ``` >>> str(bytearray([97])) bytearray(b'a') ```
In python 2:
In python 3: