pyexcelerator:如何通过sheet-name删除excel-sheet

时间:2012-08-13 02:36:52

标签: python excel pyexcelerator

正如标题所示,我正在使用 pyexcelerator 来操作excel文件。

代码:

from pyExcelerator import parse_xls
fpath='D:\\Capacity_20120811.xls'
eData=parse_xls(fpath)




>>> eData
[(u'testExcelReport_hr',
  {(0, 0): u'Deletetime',
   (0, 1): u'Food',
   (0, 2): u'Peak Rate',
   (0, 3): u'Total Bytes',
   (0, 4): u'Total Msg No',
   (1, 0): u'20110824T05',
   (1, 1): u'111BSA',
   (1, 2): 6255326.0,
   (1, 3): 16226057.0,
   (1, 4): 127.0,
   (2, 0): u'20110824T06',
   (2, 1): u'111BSA',
   (2, 2): 352978.0,
   (2, 3): 672104.0,
   (2, 4): 2124.0})]

我希望按sheetname:'testExcelReport_hr'

删除工作表

1 个答案:

答案 0 :(得分:0)

你可以使用列表理解:

eData = [(sheet_name, sheet_data) for (sheet_name, sheet_data) in eData
         if sheet_name != u'testExcelReport_hr']

这样可以保留除名为testExcelReport_hr之外的所有工作表,实际上会删除该工作表。