gpt4 book ai didi

python - 在 Python 中使用计数器重复创建文件

转载 作者:太空宇宙 更新时间:2023-11-03 13:12:08 25 4
gpt4 key购买 nike

基本上我想做的是编写一个 python 脚本来创建文件名中带有计数的文件,"file 1.txt""file 2.txt""file 3.txt" 例如。

我已经走了这么远:

import shutil, os, itertools


for i in itertools.count():
file = open("FILE " + str(i) + ".txt", 'w+')
print(i)
time.sleep(1)

基本上我能做的就是计数,但文件创建是我的问题。 open() 似乎不起作用。如何创建这些文件以及如何选择目录来存储文件?

最佳答案

import shutil, os, itertools
import time

dirpath = 'c:\\usr\\'
for i in itertools.count():
file = open(dirpath+"FILE " + str(i) + ".txt", 'w+')
print(i)
time.sleep(1)

这会起作用。你的代码工作正常。我只是添加了目录路径

关于python - 在 Python 中使用计数器重复创建文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40934150/

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