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

python批量创建txt文件

程序员文章站 2022-04-17 15:54:37
...

  批量创建txt文件,并统一命名,在所有文件中写入要求的语句。

#文件个数
num=5

def main():
    #txt文件的存放路径
    desktop_path = "C:\\Users\\Zhang\\Desktop\\aaa\\"
    count=0
    for i in range(num):

        #命名格式
        full_path = desktop_path + "blxw_" + str(count) + '.txt'
        file = open(full_path, 'w')

        #写入的语句
        file.write("hello world!")
        print(full_path)
        count+=1

if __name__ == '__main__':
    main()