UnicodeDecodeError:' utf8'编解码器不能解码位置11中的字节0x80:无效的起始字节

时间:2015-03-17 09:22:06

标签: python python-2.7 export-to-excel

我正在尝试使用utf-8编码将数据写入Excel工作表。 现在我得到以下错误,完全追溯 - >

Traceback (most recent call last):
File "C:\Users\varun\Desktop\Python_testfiles\Reports      Automation\Txn.py", line 142, in <module>
domesticsheet.write(row, j, txn[payuid][j])
File "C:\Python27\lib\site-packages\xlwt\Worksheet.py", line 1030, in write
self.row(r).write(c, label, style)
File "C:\Python27\lib\site-packages\xlwt\Row.py", line 240, in write
StrCell(self.__idx, col, style_index, self.__parent_wb.add_str(label))
File "C:\Python27\lib\site-packages\xlwt\Workbook.py", line 326, in add_str
return self.__sst.add_str(s)
File "C:\Python27\lib\site-packages\xlwt\BIFFRecords.py", line 24, in add_str
s = unicode(s, self.encoding)
UnicodeDecodeError: 'utf8' codec can't decode byte 0x80 in position 11:       invalid start byte

主要问题是我随机收到此错误。我运行了与其他日子相对应的数据代码,它运行得很好。 我尝试使用&#34; utf-16&#34;和&#34; ascii&#34;编码也不是utf - 8,但错误仍然存​​在(错误语句改变了。)

有什么办法可以摆脱这个错误吗?另外,我想知道为什么会出现这个错误(我是python的初学者)。任何帮助将受到高度赞赏。是否有必要提供一些编码类型?

如果您需要查看代码,请按以下步骤操作 - &gt;

    filehandler[booknumber] = xlwt.Workbook(encoding = "utf-8")
    domesticsheet = filehandler[booknumber].add_sheet("Domestic_txn" + `booknumber`, cell_overwrite_ok=True)
    for k in range(len(header)):
        domesticsheet.write(0,k,header[k]);
    for j in range(len(txn[payuid])):
        domesticsheet.write(row, j, txn[payuid][j])

1 个答案:

答案 0 :(得分:4)

0x80 - 0xBF范围内的字节以UTF-8编码保留为连续字节。

0x00 - 0x7F - Single byte sequence, backwards compatible with ASCII
0x80 - 0xBF - Continuation byte for multi byte sequences
0xC0 - 0xDF - Starter byte for two byte sequence
0xE0 - 0xEF - Starter byte for three byte sequence
0xF0 - 0xF7 - Starter byte for four byte sequence
0xF8 - 0xFB - Starter byte for five byte sequence (overlong encoding)
0xFC - 0xFD - Starter byte for six byte sequence (overlong encoding)
0xFE - 0xFF - Illegal bytes

Python抱怨的是你的数据在连续字节之前不包含有效的起始字节。