我是靠谱客的博主 喜悦万宝路,最近开发中收集的这篇文章主要介绍python合并多个txt中的内容到一个txt中,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在使用python进行合并多个txt的内容时,使用如下:

with open(filepath,'w') as f:
    f.write(line) 

会导致将原来的filepath中的内容进行覆盖,如何进行不覆盖形式的编写呢,我们可以进行先读行再写的方式(先readlines(),后write),源代码如下,同时还包含将文章中的符号、数字等的去除:

import os
import re
import sys

mefile_name=['D:\LDA\LdaStemDocs2\breast cancer\','D:\LDA\LdaStemDocs2\colon cancer\','D:\LDA\LdaStemDocs2\lung cancer\','D:\LDA\LdaStemDocs2\NHL\','D:\LDA\LdaStemDocs2\pancreatic cancer\','D:\LDA\LdaStemDocs2\prostate cancer\','D:\LDA\LdaStemDocs2\urinary bladder cancer\']
for i in range(len(mefile_name)):
    for j in range(len(datil_name)):
        meragefiledir=mefile_name[i]+datil_name[j]
        filenames=os.listdir(meragefiledir)
        filestore_name='\result_.txt'
        with open(filestore_name,'w',encoding='utf-8') as f:
            for filename in filenames:
                filepath=meragefiledir+'\'
                filepath=filepath+filename
                for line in open(filepath).readlines():
                    line=re.findall(r'[a-zA-Z]+s+[a-zA-Zs]*',line)
                    line="".join(line)  
            #print(line)
                    f.write(line+'n')
            #f.write('n')
        print('combine {0}{1} ending~~~~~~n'.format(mefile_name[i],datil_name[j]))
print('ending all')

以上代码删除了原有的open(file)路径,具体根据自己的文件路径进行添加。

最后

以上就是喜悦万宝路为你收集整理的python合并多个txt中的内容到一个txt中的全部内容,希望文章能够帮你解决python合并多个txt中的内容到一个txt中所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(34)

评论列表共有 0 条评论

立即
投稿
返回
顶部