ヘッダーでインポートした 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()