您的位置:首页 > 编程语言 > Python开发

参考视频教学写的一个文件处理分割的脚本

2016-05-08 13:05 549 查看
#coding=utf-8
def save_file(boy, girl, count):
file_name_boy = 'boy_'+ str(count) + '.txt'
file_name_girl = 'girl_' + str(count) + '.txt'

boy_file = open(file_name_boy, 'w')
girl_file = open(file_name_girl, 'w')

boy_file.writelines(boy)
girl_file.writelines(girl)

boy_file.close()
girl_file.close()

def split_file(file_name):

f = open('E:\\工作\\Python_practice\\test1.txt')
boy =[]
girl = []
count = 1

for each_line in f:
if each_line[:6] != '======':
(role, line_spoken) = each_line.split(':',1)
if role == '星星':
boy.append(line_spoken)
if role == '闪闪':
girl.append(line_spoken)
else:
save_file(boy, girl, count)

boy = []
girl = []
count += 1
save_file(boy,girl,count)

f.close()

split_file('test1.txt')
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  python学习