In Python, I got a string encoded in Quoted-Printable encoding
mystring="=AC=E9"
This string should be printed as
é
So I want to decode it and encode it in UTF-8, I guess. I understand that something is possible through
import quopri
quopri.decodestring('=A3=E9')
But then, I'm completely lost. How would you do decode/encode this string to get printed properly?