从零学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逐行读取文件内容的三种方法
Jan 20 Python
将Python中的数据存储到系统本地的简单方法
Apr 11 Python
Python中用altzone()方法处理时区的教程
May 22 Python
python数据类型_元组、字典常用操作方法(介绍)
May 30 Python
浅析Python中的赋值和深浅拷贝
Aug 15 Python
pandas 两列时间相减换算为秒的方法
Apr 20 Python
Django model 中设置联合约束和联合索引的方法
Aug 06 Python
学python安装的软件总结
Oct 12 Python
python实现猜拳游戏
Mar 04 Python
Python3爬虫关于识别点触点选验证码的实例讲解
Jul 30 Python
提高python代码运行效率的一些建议
Sep 29 Python
python numpy中setdiff1d的用法说明
Apr 22 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实现文件上传二法
2006/10/09 PHP
一个从别的网站抓取信息的例子(域名查询)
2006/10/09 PHP
网友原创的PHP模板类代码
2008/09/07 PHP
php开启安全模式后禁用的函数集合
2011/06/26 PHP
javascript Array.prototype.slice使用说明
2010/10/11 Javascript
jQuery 源码分析笔记(7) Queue
2011/06/19 Javascript
文本框文本自动补全效果示例分享
2014/01/19 Javascript
Javascript中的getUTCDay()方法使用详解
2015/06/10 Javascript
jquery popupDialog 使用 加载jsp页面的方法
2016/10/25 Javascript
javascript replace()第二个参数为函数时的参数用法
2016/12/26 Javascript
Javascript实现数组中的元素上下移动
2017/04/28 Javascript
Vue中保存数据到磁盘文件的方法
2018/09/06 Javascript
详解vue-cli 3.0 build包太大导致首屏过长的解决方案
2018/11/10 Javascript
[00:09]DOTA2新版本PA至宝特效动作展示
2014/11/19 DOTA
[01:11]回顾历届DOTA2国际邀请赛中国区预选赛
2017/06/26 DOTA
[02:36]DOTA2-DPC中国联赛 正赛 PSG.LGD vs Magma 选手采访
2021/03/11 DOTA
linux系统使用python监控apache服务器进程脚本分享
2014/01/15 Python
详解 Python中LEGB和闭包及装饰器
2017/08/03 Python
python 使用sys.stdin和fileinput读入标准输入的方法
2018/10/17 Python
python+PyQT实现系统桌面时钟
2020/06/16 Python
使用python对文件中的数值进行累加的实例
2018/11/28 Python
python 3.3 下载固定链接文件并保存的方法
2018/12/18 Python
已安装tensorflow-gpu,但keras无法使用GPU加速的解决
2020/02/07 Python
mac在matplotlib中显示中文的操作方法
2020/03/06 Python
大学同学聚会邀请函
2014/01/19 职场文书
会计毕业自我鉴定
2014/02/05 职场文书
《开国大典》教学反思
2014/04/19 职场文书
行政部经理助理岗位职责
2014/06/15 职场文书
学生意外伤害赔偿协议书
2014/09/17 职场文书
2014企业领导班子四风对照检查材料思想汇报
2014/09/17 职场文书
迎新生标语大全
2014/10/06 职场文书
毕业典礼邀请函
2015/01/31 职场文书
新员工辞职信范文
2015/05/12 职场文书
演讲稿之开卷有益
2019/08/07 职场文书
创业计划书之旅游网站
2019/09/06 职场文书
pytorch 实现变分自动编码器的操作
2021/05/24 Python