最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Python通过分隔符分割文件后按特定次序重新组合操作代码
时间:2022-06-25 02:05:38 编辑:袖梨 来源:一聚教程网
本篇文章小编给大家分享一下Python通过分隔符分割文件后按特定次序重新组合操作代码,文章代码介绍的很详细,小编觉得挺不错的,现在分享给大家供大家参考,有需要的小伙伴们可以来看看。
代码如下:
#-*-encoding:utf-8-*- import os, sys, time, datetime, glob fo1 = open("C:/Users/Administrator/Desktop/areainfo.txt", "w") fo2 = open("C:/Users/Administrator/Desktop/personinfo.txt", "w") for root, dirs, files, in os.walk("E:/test", topdown=False): for name in files: file_name = os.path.join(root,name) if os.path.splitext(file_name)[1] == '.txt': print(file_name) with open(file_name) as a_file: for data in a_file.readlines(): str2=[] str4=[] for i in [0, 1, 2, 3, 7]: str2.append(data.split('||~||')[i]) fo1.write("||~||".join(str2)+"n") for i in [4, 5, 6, 7, 8, 9, 10, 11]: str4.append(data.split('||~||')[i]) fo2.write("||~||".join(str4)+"n") fo1.close() fo2.close()
相关文章
- “十月朝,糍粑碌碌烧”说的是小雪时节的哪一项习俗 蚂蚁庄园11月22日答案早知道 11-25
- 以闪亮之名宠物礼包怎么样 11-25
- 崩坏星穹铁道星期日用什么光锥 11-25
- 崩坏星穹铁道星期日用什么光锥 崩铁星期日光锥推荐搭配介绍 11-25
- 崩坏星穹铁道星期日技能机制怎么样 崩铁星期日技能机制介绍 11-25
- 崩坏星穹铁道星期日遗器怎么选择 崩铁星期日遗器推荐搭配介绍 11-25