I\'ve some problem with \"decode\" method in python 3.3.4. This is my code:
for lines in open(\'file\',\'r\'): decodedLine = lines.decode(\'ISO-8859-1\')
open already decodes to Unicode in Python 3 if you open in text mode. If you want to open it as bytes, so that you can then decode, you need to open with mode 'rb'.
open