from win32com.client import Dispatch
base_path = os.path.dirname(os.path.abspath(__file__))
_csvFilename = os.path.join(base_path, "bcForecasting.csv")
_csvFile = open (_csvFilename, 'wb')
_csvFile = csv.writer(_csvFile, quoting=csv.QUOTE_ALL)
_Header = ['Name']+self.makeIntoList (self.root.tss.series () [0].getAllTimes (), self.originalTimesteps + _futurePeriods)
_csvFile.writerow (_Header)
xl = Dispatch('Excel.Application')
wb = xl.Workbooks.Open(_csvFilename)
xl.Visible = True
此处使用 Python 启动 Excel 应用程序以查看 CSV 文件,但 CSV 文件以读取模式打开,无法查看写入的数据。请帮忙。