博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
引入列表,将对话分类添加到对应列表中
阅读量:5214 次
发布时间:2019-06-14

本文共 738 字,大约阅读时间需要 2 分钟。

man = []        #创建列表other = []try:    data = open('sketch.txt')    for each_line in data:        try:            (role, line_spoken) = each_line.split(':', 1)            line_spoken = line_spoken.strip()   #去除空白符            if role == 'Man':               man.append(line_spoken)      #将man的话添到man[]                           elif role == 'Other Man':                      other.append(line_spoken)        #将other man的话添到列表                                       except ValueError:      #异常处理            pass    if 'data' in locals():      #调用方法locals()判断‘data’文件是否存在当前环境中        data.close()    except IOError:     #I/O错误处理    print('The data file is missing!')print(man)print(other)

 

转载于:https://www.cnblogs.com/nester-liz/p/9525769.html

你可能感兴趣的文章
20190422 T-SQL 触发器
查看>>
[置顶] Linux终端中使用上一命令减少键盘输入
查看>>
poj1422_有向图最小路径覆盖数
查看>>
BootScrap
查看>>
[大牛翻译系列]Hadoop(16)MapReduce 性能调优:优化数据序列化
查看>>
WEB_点击一百万次
查看>>
CodeForces - 878A Short Program(位运算)
查看>>
路冉的JavaScript学习笔记-2015年1月23日
查看>>
Mysql出现(10061)错误提示的暴力解决办法
查看>>
2018-2019-2 网络对抗技术 20165202 Exp3 免杀原理与实践
查看>>
NPM慢怎么办 - nrm切换资源镜像
查看>>
CoreData 从入门到精通(四)并发操作
查看>>
Swift - UIView的常用属性和常用方法总结
查看>>
Swift - 异步加载各网站的favicon图标,并在单元格中显示
查看>>
Java编程思想总结笔记Chapter 5
查看>>
[LeetCode]662. Maximum Width of Binary Tree判断树的宽度
查看>>
WinForm聊天室
查看>>
Python 从零学起(纯基础) 笔记(一)
查看>>
【Python学习笔记】1.基础知识
查看>>
梦断代码阅读笔记02
查看>>