将多个txt文件中的内容写在一个txt中的方法

import os
filename='./train_data/img_'
for i in range(1,19736):
    newfile=filename+str(i)+'.txt'
    if os.path.exists(newfile):
        read= open(newfile, 'r')
        for line in read:
            writ = open('recode.txt', 'a')
            writ.write(line)
            writ.write('\n')
    else:
        continue
posted @ 2022-05-11 16:36  陶陶Name  阅读(89)  评论(0编辑  收藏  举报