|
just uncomment that line or add ".encode('iso-8859-15')" (use your terminal's charset). The background is, with encode() you are transforming text from a given charset into Python's own internal representation. When you're trying to output it, you have to transform it to a real charset again, using decode().
|