我在python 3.3.4中的「decode」方法有些問題。這是我的代碼:'str'對象在Python3中沒有屬性'decode'
for lines in open('file','r'):
decodedLine = lines.decode('ISO-8859-1')
line = decodedLine.split('\t')
但我不能解碼這個問題行:
AttributeError: 'str' object has no attribute 'decode'
你有什麼想法?謝謝
是,在Python 3.x的字符串不再有'解碼方法 - 看看https://docs.python.org/3/howto/unicode.html – jonrsharpe 2014-09-30 16:00:38