从零学python系列之从文件读取和保存数据


Posted in Python onMay 23, 2014

在HeadFirstPython网站中下载所有文件,解压后以chapter 3中的“sketch.txt”为例:

 

新建IDLE会话,首先导入os模块,并将工作目录却换到包含文件“sketch.txt”的文件夹,如C:\\Python33\\HeadFirstPython\\chapter3

>>> import os
>>> os.getcwd()    #查看当前工作目录
'C:\\Python33'
>>> os.chdir('C:/Python33/HeadFirstPython/chapter3')   #切换包含数据文件的文件夹
>>> os.getcwd()     #查看切换后的工作目录
'C:\\Python33\\HeadFirstPython\\chapter3'

打开文件“sketch.txt”,读取并显示前两行:

>>> data=open('sketch.txt')
>>> print(data.readline(),end='')
Man: Is this the right room for an argument?
>>> print(data.readline(),end='')
Other Man: I've told you once.

回到文件起始位置,使用for语句处理文件中的每行,最后关闭文件:

>>> data.seek(0)   #使用seek()方法回到文件起始位置
>>> for each_line in data:
    print(each_line,end='')
    
Man: Is this the right room for an argument?
Other Man: I've told you once.
Man: No you haven't!
Other Man: Yes I have.
Man: When?
Other Man: Just now.
Man: No you didn't!
Other Man: Yes I did!
Man: You didn't!
Other Man: I'm telling you, I did!
Man: You did not!
Other Man: Oh I'm sorry, is this a five minute argument, or the full half hour?
Man: Ah! (taking out his wallet and paying) Just the five minutes.
Other Man: Just the five minutes. Thank you.
Other Man: Anyway, I did.
Man: You most certainly did not!
Other Man: Now let's get one thing quite clear: I most definitely told you!
Man: Oh no you didn't!
Other Man: Oh yes I did!
Man: Oh no you didn't!
Other Man: Oh yes I did!
Man: Oh look, this isn't an argument!
(pause)
Other Man: Yes it is!
Man: No it isn't!
(pause)
Man: It's just contradiction!
Other Man: No it isn't!
Man: It IS!
Other Man: It is NOT!
Man: You just contradicted me!
Other Man: No I didn't!
Man: You DID!
Other Man: No no no!
Man: You did just then!
Other Man: Nonsense!
Man: (exasperated) Oh, this is futile!!
(pause)
Other Man: No it isn't!
Man: Yes it is!
>>> data.close()

读取文件后,将不同role对应数据分别保存到列表man和other:

import os
print(os.getcwd())
os.chdir('C:\Python33\HeadFirstPython\chapter3')
man=[]    #定义列表man接收Man的内容
other=[]  #定义列表other接收Other Man的内容
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)
            elif role=='Other Man':
                other.append(line_spoken)
        except ValueError:
                pass
    data.close()
except IOError:
    print('The datafile is missing!')
print (man)
print (other)

Tips:

使用open()方法打开磁盘文件时,默认的访问模式为r,表示读,不需要特意指定;

要打开一个文件完成写,需要指定模式w,如data=open("sketch.txt","w"),如果该文件已经存在则会清空现有内容;

要追加到一个文件,需要指定模式a,不会清空现有内容;

要打开一个文件完成写和读,且不清空现有内容,需要指定模式w+;

 例如,将上例中保存的man和other内容以文件方式保存时,可修改如下:

import os
print(os.getcwd())
os.chdir('C:\Python33\HeadFirstPython\chapter3')
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)
            elif role=='Other Man':
                other.append(line_spoken)
        except ValueError:
                pass
    data.close()
except IOError:
    print('The datafile is missing!')
try:
    man_file=open('man.txt', 'w')      #以w模式访问文件man.txt
    other_file=open('other.txt','w')   #以w模式访问文件other.txt
    print (man, file=man_file)           #将列表man的内容写到文件中
    print (other, file=other_file)
except IOError:
    print ('File error')
finally:
    man_file.close()
    other_file.close()

但是第26行print()为什么会报错?“syntax error while detecting tuple”,有大神能给解惑一下不

Python 相关文章推荐
详解在Python和IPython中使用Docker
Apr 28 Python
Python的for和break循环结构中使用else语句的技巧
May 24 Python
深入浅析Python 中 is 语法带来的误解
May 07 Python
基于python cut和qcut的用法及区别详解
Nov 22 Python
wxpython多线程防假死与线程间传递消息实例详解
Dec 13 Python
浅谈Python访问MySQL的正确姿势
Jan 07 Python
TensorFlow实现打印每一层的输出
Jan 21 Python
浅谈tensorflow使用张量时的一些注意点tf.concat,tf.reshape,tf.stack
Jun 23 Python
python如何求圆的面积
Jul 01 Python
Python自动巡检H3C交换机实现过程解析
Aug 14 Python
在Python中实现字典反转案例
Dec 05 Python
总结Pyinstaller打包的高级用法
Jun 28 Python
从零学python系列之浅谈pickle模块封装和拆封数据对象的方法
May 23 #Python
从零学python系列之新版本导入httplib模块报ImportError解决方案
May 23 #Python
从零学python系列之数据处理编程实例(二)
May 22 #Python
从零学python系列之数据处理编程实例(一)
May 22 #Python
Python学习笔记_数据排序方法
May 22 #Python
从零学Python之hello world
May 21 #Python
Python开发实例分享bt种子爬虫程序和种子解析
May 21 #Python
You might like
PHP远程采集图片详细教程
2014/07/01 PHP
php+iframe 实现上传文件功能示例
2020/03/04 PHP
Prototype 学习 工具函数学习($方法)
2009/07/12 Javascript
实例讲解Jquery中隐藏hide、显示show、切换toggle的用法
2016/05/13 Javascript
基于JS代码实现图片在页面中旋转效果
2016/06/16 Javascript
Node.js通过身份证号验证年龄、出生日期与性别方法示例
2017/03/09 Javascript
ES6生成器用法实例分析
2017/04/10 Javascript
backbone简介_动力节点Java学院整理
2017/07/14 Javascript
vue.js实现带日期星期的数字时钟功能示例
2018/08/28 Javascript
微信小程序框架wepy之动态控制类名
2018/09/14 Javascript
对angularJs中2种自定义服务的实例讲解
2018/09/30 Javascript
微信小程序实现多个按钮的颜色状态转换
2019/02/15 Javascript
elementUi vue el-radio 监听选中变化的实例代码
2019/06/28 Javascript
vue滚动插件better-scroll使用详解
2019/10/18 Javascript
vue实现浏览器全屏展示功能
2019/11/27 Javascript
如何使用JS console.log()技巧提高工作效率
2020/10/14 Javascript
[15:41]教你分分钟做大人——灰烬之灵
2015/03/11 DOTA
[06:43]DAC2018 4.5 SOLO赛 Maybe vs Paparazi
2018/04/06 DOTA
[00:23]魔方之谜解锁款式
2018/12/20 DOTA
浅谈python中的正则表达式(re模块)
2017/10/17 Python
Python日志模块logging基本用法分析
2018/08/23 Python
浅谈python中str字符串和unicode对象字符串的拼接问题
2018/12/04 Python
Python计算两个矩形重合面积代码实例
2019/09/16 Python
使用Python脚本从文件读取数据代码实例
2020/01/19 Python
keras多显卡训练方式
2020/06/10 Python
20行Python代码实现一款永久免费PDF编辑工具的实现
2020/08/27 Python
amazeui树节点自动展开折叠面板并选中第一个树节点的实现
2020/08/24 HTML / CSS
最新的咖啡店创业计划书
2013/12/30 职场文书
农业局学习党的群众路线教育实践活动心得体会
2014/03/07 职场文书
2014年少先队工作总结
2014/12/03 职场文书
优秀班主任推荐材料
2014/12/17 职场文书
课外活动总结
2015/02/04 职场文书
2015年清明节网上祭英烈留言寄语
2015/03/04 职场文书
房屋租赁意向书范本
2015/05/09 职场文书
金榜题名主持词
2015/07/02 职场文书
vue组件vue-esign实现电子签名
2022/04/21 Vue.js