gpt4 book ai didi

python - 如何将 CSV 文件写入最近在 python 中创建的特定文件夹?

转载 作者:行者123 更新时间:2023-12-01 04:58:00 25 4
gpt4 key购买 nike

这是我目前拥有的:

CSVdir = "./CSV_folder"
realCSVdir = os.path.realpath(CSVdir)
if not os.path.exists(CSVdir):
os.makedirs(CSVdir)
writer = csv.writer(open(realCSVdir + 'Movie-%s.csv' % var, 'wb'))

我尝试在刚刚创建的 CSVdir 中写入 CSV 文件,但它不起作用。

最佳答案

问题是您遗漏了 realCSVdir 和文件名之间的路径分隔符。

使用os.path.join对于跨平台解决方案:

# this is meant to follow on from the `os.makedirs` line...
foupath = os.path.join(realCSVdir, 'Movie-%s.csv' % var)
fou = open(foupath, 'wb')
writer = csv.writer(fou)

关于python - 如何将 CSV 文件写入最近在 python 中创建的特定文件夹?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26936046/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com