gpt4 book ai didi

python - 如何打开带有递增数字的文件?

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

现在我正在这样做:

filenames = ['ch01.md', 'ch02.md', 'ch03.md', 'ch04.md', 'ch05.md', 'ch06.md']
with open('chall.txt', 'w') as outfile:
for fname in filenames:

但是我有很多文件写成 chxx.md(直到 ch24.md)。有什么可以修改使用范围的脚本吗?所以我不必输入所有文件名?

最佳答案

您或许可以使用 glob。这是一种使用通配符收集文件的简单方法。

import glob
filenames = glob.glob('/yourDirectory/ch*.md') # Will give you a list of all the file names
with open('chall.txt', 'w') as outfile:
for fname in filenames:

关于python - 如何打开带有递增数字的文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33462780/

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