当前位置 : 主页 > 编程语言 > python >

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

来源:互联网 收集:自由互联 发布时间:2022-06-15
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: con
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
上一篇:Java在指定路径下执行cmd命令的方法
下一篇:没有了
网友评论