首页 > 其他 > 详细

从规则文本文件中提取列字段

时间:2019-02-17 22:16:46      阅读:418      评论:0      收藏:0      [点我收藏+]

    test.txt内容如下:
1|name1|agg1|add1|phone1|card1|
2|name2|agg2|add2|phone2|card2|

    如何提取第4列的内容,即add1、add2

 1 def iterdatainfile(filename, spliter=\t):
 2     with open(filename, rt) as handle:
 3         for ln in handle:
 4             yield ln.split(spliter)
 5  
 6 focue, LF = 3, \n  #LF = 3:取第4列
 7 with open("output.txt", wt) as handle:
 8     handle.writelines([row[focue] + LF
 9                        for row in iterdatainfile(test.txt,spliter=|)])
10 
11 # 下面是显示提取到的内容
12 txtstr = open(output.txt)
13 a = txtstr.read()
14 print(a)

 

从规则文本文件中提取列字段

原文:https://www.cnblogs.com/sxinfo/p/10392736.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!