3

我是 python 的新手,我正在尝试使用下面显示的代码来完成上面的标题。它运行到我要求保存 xls 输出的地步。任何帮助将不胜感激。

import glob
import csv
import xlwt

for filename in glob.glob("C:\xxxx\*.txt"):
    wb = xlwt.Workbook()
    sheet = wb.add_sheet('sheet 1')
    newName = filename
    spamReader = csv.reader(open(filename, 'rb'), delimiter=';',quotechar='"')
    for rowx, row in enumerate(spamReader):
        for colx, value in enumerate(row):
            sheet.write(rowx, colx, value)

    wb.save(newName + ".xls")

print "Done"

Traceback (most recent call last):
File "C:/Users/Aline/Desktop/Python_tests/1st_trial.py", line 13, in <module>
wb.save("C:\Users\Aline\Documents\Data2013\consulta_cand_2010\newName.xls")
File "C:\Python27\lib\site-packages\xlwt\Workbook.py", line 662, in save
doc.save(filename, self.get_biff_data())
File "C:\Python27\lib\site-packages\xlwt\Workbook.py", line 637, in get_biff_data
shared_str_table   = self.__sst_rec()
File "C:\Python27\lib\site-packages\xlwt\Workbook.py", line 599, in __sst_rec
return self.__sst.get_biff_record()
File "C:\Python27\lib\site-packages\xlwt\BIFFRecords.py", line 76, in get_biff_record
self._add_to_sst(s)
File "C:\Python27\lib\site-packages\xlwt\BIFFRecords.py", line 91, in _add_to_sst
u_str = upack2(s, self.encoding)
File "C:\Python27\lib\site-packages\xlwt\UnicodeUtils.py", line 50, in upack2
us = unicode(s, encoding)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc7 in position 4: ordinal not in    range(128)

[编辑] 此代码有效。

import glob
import csv
import xlwt

for filename in glob.glob("C:\\Users\\Aline\\Documents\\Data2013\\consulta_cand_2010\\*.txt"):
    spamReader = csv.reader((open(filename, 'rb')), delimiter=';',quotechar='"')
    encoding = 'latin1'
    wb = xlwt.Workbook(encoding=encoding)
    sheet=xlwt.Workbook()
    sheet = wb.add_sheet('sheet 1')
    newName = filename
    for rowx, row in enumerate(spamReader):
        for colx, value in enumerate(row):
            sheet.write(rowx, colx, value)
    wb.save(newName + ".xls")

print "Done"
4

2 回答 2

0

您没有转义文件名。例如,在 Python 中,字符串"consulta_cand_2010\newName.xls""\n"中间,这是一个行尾字符 --- 对文件名无效!

在 Windows 上,您需要编写包含文件名"C:\\Like\\This"甚至."C:/Like/This"r"C:\Like\This"

于 2013-06-14T19:50:25.433 回答
0

我相信您的编码需要为输出电子表格设置。您需要知道该文件使用的是什么编码。csv 模块不直接支持 unicode,但它只[8-bit-clean][1]适用于大多数西方语言。

在不知道文本文件的编码是什么的情况下,您有两种选择。选项 1 是根据 python 使用您的本地编码:

   >>> import locale
   >>> lang_code, encoding = locale.getdefaultlocale()

^^ 使用 getdefaultlocale() 时要小心。该文档指出编码可能是 None

或者只是回退到 UTF8 并交叉手指:D。

   >>> encoding = 'UTF8'
   >>> workbook = xlwt.Workbook(encoding=encoding)
于 2013-06-14T20:40:47.143 回答