str_object = b'Python Pool' print(str_object) # => b'Python Pool' str_object = str_object.decode() print(str_object) # => Python Pool