...

/

Encoding / Decoding

Encoding / Decoding

Let's find out about encoding and decoding.

Back in the good ol’ days, we quickly learned that we could not decode a unicode string and we could not encode a str type either. If we tried to take a unicode string and decode it to ASCII (i.e. convert it to a byte string), we would get a UnicodeEncodeError.

Decoding

Here we have a simple example and we will test it with both Python2 and Python3.

Testing the code with Python2

Press + to interact
print(u"\xa0".decode("ascii"))

In ...