gpt4 book ai didi

python - 如何在 python 中使用循环创建多个目录?

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

我想用一个循环创建 10 个目录,我试过这段代码:

import os
pathname = 1
directory = "C:\Directory\Path\Name\\" + str(pathname)


while pathname < 11:
if not os.path.exists(directory):
os.makedirs(directory)
pathname += 1

但它只是创建第一个目录并停止,就好像它甚至没有经历循环的其余部分一样。我是 python 的新手,这段代码对我来说很有意义,但我不知道为什么它可能不会work.Any帮助表示赞赏。

最佳答案

import os
pathname = 1
directory = "C:\Directory\Path\Name\\" + str(pathname)

while pathname < 11:
if not os.path.exists(directory):
os.makedirs(directory)
pathname += 1
directory = "C:\Directory\Path\Name\\" + str(pathname)

关于python - 如何在 python 中使用循环创建多个目录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43528324/

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