使用xlwt在Python中保存工作簿会产生错误

时间:2014-05-20 16:16:18

标签: python excel xlwt

这个问题最近发生在我身上。 当我运行此代码时:

import xlwt
wb = xlwt.Workbook()
sheet = wb.add_sheet("Random")
sheet.write(0,0,"hello!")
wb.save("test.xls") 

它给了我错误:

Traceback (most recent call last):
  File "<module2>", line 16, in <module>
  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\CompoundDoc.py", line 261, in save
    f = open(file_name_or_filelike_obj, 'w+b')
IOError: [Errno 13] Permission denied: 'test.xls'

我已经找到了答案,但我找不到了。 任何帮助将不胜感激!

0 个答案:

没有答案