解碼我已經寫在python下面的代碼2.7如何編碼和西班牙在Python
# -*- coding: utf-8 -*-
import sys
_string = "años luz detrás"
print _string.encode("utf-8")
,這將引發以下錯誤:
print _string.encode("utf-8")
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 1: ordinal not in range(128)
任何幫助表示讚賞,謝謝提前
你不需要使用編碼,只嘗試「打印_string」的 – Tisp
可能重複[Python的 - 「ASCII」編解碼器不能解碼字節(http://stackoverflow.com/questions/9644099/python-ascii-編解碼器斜面解碼字節) –