我对 Python 很陌生。我刚刚使用 Python 创建了一个 CSV 文件,现在我想将它保存到我的驱动器上的一个目录中,以便我可以使用 Excel、SAS 等访问它。我该怎么做?这是我的代码:
directory='C:\Users\Documents\pyth\tweet_sentiment.csv'
output=zip(tweets_list, positive_counts) #brings the two variables together for merging to csv
writer=csv.writer(open(directory, 'wb'))
writer.writerows(output) #sends list to the csv
当我运行它时,我得到一个错误:
IOError:[Errno 22] 无效模式('wb')或文件名:'C:\Users\Documents\pyth\tweet_sentiment.csv'
我应该怎么办?