本文主要是介绍Python读取文件内容后将内容分组创建文件,写入对应的文件内容,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
def output(filename):
new_file_line = []
with open(filename,'r') as fe:
names = fe.readlines()
for new_list in names:
new_file_line.append(new_list.replace('\n',''))
print(new_file_line) #打印数组内容
for list_cont in new_file_line: #遍历数组
with open(list_cont+'.txt','w') as new_file_cont: #将数组中的元组创建成文件名
for i in list_cont: #遍历数组中元组的内容
new_file_cont.write(i +'\n') #将元组中的内容写入创建的文件中
output('word.txt')
这篇关于Python读取文件内容后将内容分组创建文件,写入对应的文件内容的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!