码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2019-02-17 22:14:57      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:rda   and   nes   pre   style   nbsp   code   test   tst   

    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)

 

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

标签:rda   and   nes   pre   style   nbsp   code   test   tst   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!