python 中从文本中提取包含指定字符的数据

2022/6/1 1:19:41

本文主要是介绍python 中从文本中提取包含指定字符的数据,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

1、

[root@PC1 test]# ls
a.txt  test.py
[root@PC1 test]# cat a.txt
u r d
s f e
a d e
x v m
e f x
e r d
z d v
[root@PC1 test]# cat test.py          ## 提取程序,提取文本中包含e的数据
#!/usr/bin/python

in_file = open("a.txt", "r")
out_file = open("result.txt", "w")

lines = in_file.readlines()

for i in lines:
    if "e" in i:
        out_file.write(i)

in_file.close()
out_file.close()
[root@PC1 test]# python test.py        ## 执行程序
[root@PC1 test]# ls
a.txt  result.txt  test.py
[root@PC1 test]# cat result.txt        ## 查看结果
s f e
a d e
e f x
e r d

 



这篇关于python 中从文本中提取包含指定字符的数据的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程