阅读背景:

如何在Python中使用Microsoft Excel打开csv文件?

来源:互联网 
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 = self.makeIntoList (self.root.tss.series () [0].getAllTimes (), self.originalTimesteps + _futurePeriods)
_csvFile.writerow (_Header)
base_path = os.path.dirname(os.path.abspath(__f



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: