python中文文本分析和提取_python str(使用python对txt文本进行分析和提取)

  • Post author:
  • Post category:python


python 文本文件数据处理

#/usr/bin/env python3

# -*- coding: utf-8 -*-

def zhidao_560604345(infile, outfile):

reader = open(infile, ‘r’)

set_dict = {}

setenv_dict = {}

while True:

line = reader.readline()

if len(line) == 0:

break

a, b, c = line.strip().split(maxsplit=2)

if a == ‘set’:

if not b in set_dict:

set_dict[b] = set()

set_dict[b].add(c.strip())

elif a == ‘setenv’:

if not b in setenv_dict:

setenv_dict[b] = set()

setenv_dict[b].update(c.strip().split(‘:’))

reader.close()

buff = []

for k, v in set_dict.items():

buff.append(‘set %s “%s”‘ % (k, ‘:’.join(list(v))))

for k, v in setenv_dict.items():

tmp = []

for



版权声明:本文为weixin_35578381原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。