我正在尝试通过我在标题处导入的 Win32COM 客户端将列表导出到 excel。我创建的对象编码如下,但我似乎无法让它将每个值导出到电子表格中自己的行。如果我能得到一个好的指针(除了放弃 python !!:D),我将不胜感激。
class XcelExport():
def excel(self):
app = 'Excel'
xl = win32.gencache.EnsureDispatch('%s.Application' % app)
ss = xl.Workbooks.Open(r'C:\MyFile.xls')
sh = ss.ActiveSheet
xl.Visible = True
sleep(.1)
sh.Cells(1,1).Value = 'Export-to-%s : Items' % app
sleep(.1)
for i in EventTableRFT:
sh.Range("A").Value = i
sh.Cells(i+2,1).Value = "End of the List!"
xprt = XcelExport()
xprt.excel()