欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python批量生成文件中要生成的文件夹(文件名)名字

程序员文章站 2024-03-17 13:17:52
...

我要生成的所有文件名都在note.txt文件中

直接上代码:

mport os

with open("note.txt", 'r', encoding='utf-8') as f:
    l = []
    for i in f.readlines():
        if i != None:
            l.append(i.replace("\n", ""))

# 创建l中所有名字的文件夹
# for i in l:
#     os.mkdir(i)

# 创建l中所有名字的文件
for i in l:
    f = open(i + ".txt", 'a')
    f.write("")
    f.close()

注: 前期要处理好note.txt内容(要符合命名格式)

涨知识:

Linux下生成多个文件

touch {a,b,c,...}.txt

相关标签: python with open