2011-06-07 111 views
2

儘管我不是Python開發人員,但我創建了一些Python來將一些數據轉換爲RDF。Unicode解碼錯誤

我上週在Python 3.2中運行了代碼,運行良好。今天然而,它給我的錯誤

**Traceback (most recent call last):** 

**File "C:\Users\Karen\Desktop\Linked Data new\RGC_v3.2.py", line 10, in <module> 
    for row in reader: #look through each row in the csv file. row is an area where row[0] will be the first column, row[1] the second etc. 
    File "C:\Python32\lib\encodings\cp1252.py", line 23, in decode 
    return codecs.charmap_decode(input,self.errors,decoding_table)[0] 
UnicodeDecodeError: 'charmap' codec can't decode byte 0x8d in position 754: character maps to <undefined>** 

我不知道爲什麼這突然停止工作。

回答

3

您假設數據是在CP1252中編碼的。檢查the usual suspects以確定使用的編碼。