使用Python读写文本文件及编写简单的文本编辑器


Posted in Python onMarch 11, 2016

学习raw_input和argv是学习读取文件的前提,你可能不能完全理解这个练习,所以认真学习并检查。如果不认真的话,很容易删除一些有用的文件。

这个练习包含两个文件,一个是运行文件ex15.py,一个是ex15_sample.txt。第二个文件不是脚本文件,只包括一些文本,如下:

This is stuff I typed into a file.
It is really cool stuff.
Lots and lots of fun to have in here.

我们要做的就是打开这个文件,然后打印文件内容,我们不在代码中写死文件名称,因为我们如果要读取其他文件的话,就要重新修改代码,解决这个问题的办法就是使用argv和raw_input。

from sys import argv 
 
 
script, filename = argv 
 
 
txt = open(filename) 
 
 
print "Here's your file %r:" % filename 
print txt.read() 
 
 
print "Type the filename again:" 
file_again = raw_input("> ") 
 
 
txt_again = open(file_again) 
 
 
print txt_again.read()

上面的代码做了一些有意思的事情,让我们快速的分解一下:

1-3行使用argv取得文件名。第5行使用open命令,现在使用pydoc open看看这个命令的介绍。

第7行打印一行信息,但是第8行有一些新的东西。我们在txt上调用了一个方法。我们通过open方法得到一个file,这个file有一些我们可以调用的方法。使用这些方法的方法就是在file后面加一个.(点),比如txt.read(),就像是说:“嘿,执行读取命令,没有任何参数!”

剩下部分大家在加分练习中分析吧。

运行结果

root@he-desktop:~/mystuff# python ex15.py ex15_sample.txt
Here's your file 'ex15_sample.txt':

This is stuff I typed into a file.
It is really cool stuff.
Lots and lots of fun to have in here.

Type the filename again:
> ex15_sample.txt
This is stuff I typed into a file.
It is really cool stuff.
Lots and lots of fun to have in here.

下面几个文件的命令比较常用:

  • close -- 关闭文件,相当于编辑器中的File->Save
  • read -- 读取文件内容分配给一个变量
  • readline -- 读取一行内容
  • truncate -- 清空文件,小心使用这个命令
  • write(stuff) -- 写入文件。

这些是你应该知道的重要命令,只有write需要提供参数。

让我们使用这些命令实现一个简单的文本编辑器。

from sys import argv 
 
 
script, filename = argv 
 
 
print "We're going to erase %r." % filename 
print "If you don't want that, hit CTRL-C (^C)." 
print "If you do want that, hot RETURN." 
 
 
raw_input("?") 
 
 
print "Opening the file..." 
target = open(filename, 'w') 
 
 
print "Truncating the file. Goodbye!!" 
target.truncate() 
 
 
print "Now I'm going to ask you for three lines." 
 
 
line1 = raw_input("line 1: ") 
line2 = raw_input("line 2: ") 
line3 = raw_input("line 3: ") 
 
 
print "I'm going to write these to the file." 
 
 
target.write(line1) 
target.write("\n") 
target.write(line2) 
target.write("\n") 
target.write(line3) 
target.write("\n") 
 
 
print "And finally, we close it." 
target.close()

这个程序比较长,所以慢慢来,让它能运行起来。有个办法是,先写几行,运行一下,可以运行再写几行,直到都可以运行。

运行结果
你会看到两个东西,一个是程序的输出:

root@he-desktop:~/mystuff# python ex16.py test.txt
We're going to erase 'test.txt'.
If you don't want that, hit CTRL-C (^C).
If you do want that, hot RETURN.
?
Opening the file...
Truncating the file. Goodbye!!
Now I'm going to ask you for three lines.
line 1: Hi!
line 2: Welcome to my blog!
line 3: Thank you!
I'm going to write these to the file.
And finally, we close it.

还有就是你新建立的文件,打开看看吧。

Python 相关文章推荐
python和C语言混合编程实例
Jun 04 Python
python在windows下创建隐藏窗口子进程的方法
Jun 04 Python
python生成验证码图片代码分享
Jan 28 Python
tensorflow创建变量以及根据名称查找变量
Mar 10 Python
python引用(import)某个模块提示没找到对应模块的解决方法
Jan 19 Python
Django的Modelforms用法简介
Jul 27 Python
Python八皇后问题解答过程详解
Jul 29 Python
Python3 列表,数组,矩阵的相互转换的方法示例
Aug 05 Python
关于numpy中eye和identity的区别详解
Nov 29 Python
python实现图像全景拼接
Mar 27 Python
python excel多行合并的方法
Dec 09 Python
python实现计算器简易版
Dec 17 Python
简单讲解Python中的数字类型及基本的数学计算
Mar 11 #Python
详解Python中的变量及其命名和打印
Mar 11 #Python
Python基本语法经典教程
Mar 11 #Python
Python使用PIL库实现验证码图片的方法
Mar 11 #Python
Python2.x利用commands模块执行Linux shell命令
Mar 11 #Python
Python实现列表转换成字典数据结构的方法
Mar 11 #Python
python中enumerate函数遍历元素用法分析
Mar 11 #Python
You might like
Apache, PHP在Windows 9x/NT下的安装与配置 (二)
2006/10/09 PHP
PHP中的integer类型使用分析
2010/07/27 PHP
PHP检测用户语言的方法
2015/06/15 PHP
PHP+JS三级菜单联动菜单实现方法
2016/02/24 PHP
CodeIgniter集成smarty的方法详解
2016/05/26 PHP
详解PHP中的8个魔术常量
2020/07/06 PHP
可以把编码转换成 gb2312编码lib.UTF8toGB2312.js
2007/08/21 Javascript
JQuery小知识
2010/10/15 Javascript
jquery 设置元素相对于另一个元素的top值(实例代码)
2013/11/06 Javascript
谈谈JavaScript中function多重理解
2015/08/28 Javascript
z-blog SyntaxHighlighter 长代码无法换行解决办法(基于jquery)
2015/11/18 Javascript
基于Vue.js的表格分页组件
2016/05/22 Javascript
JS判断来路是否是百度等搜索索引进行弹窗或自动跳转的实现代码
2016/10/09 Javascript
Highcharts+NodeJS搭建数据可视化平台示例
2017/01/01 NodeJs
CSS3 动画卡顿性能优化的完美解决方案
2018/09/20 Javascript
Angular2使用SVG自定义图表(条形图、折线图)组件示例
2019/05/10 Javascript
NUXT SSR初级入门笔记(小结)
2019/12/16 Javascript
js实现简单点赞操作
2020/03/17 Javascript
手把手带你搭建一个node cli的方法示例
2020/08/07 Javascript
Openlayers实现点闪烁扩散效果
2020/09/24 Javascript
pandas Dataframe行列读取的实例
2018/06/08 Python
python基于C/S模式实现聊天室功能
2019/01/09 Python
Python读取Pickle文件信息并计算与当前时间间隔的方法分析
2019/01/30 Python
Python判断对象是否相等及eq函数的讲解
2019/02/25 Python
Python3实现的判断环形链表算法示例
2019/03/07 Python
Python使用graphviz画流程图过程解析
2020/03/31 Python
Pedro官网:新加坡时尚品牌
2019/08/27 全球购物
广告学专业毕业生自荐信
2013/09/24 职场文书
面包店的创业计划书范文
2014/01/16 职场文书
年度献血先进个人事迹材料
2014/02/14 职场文书
检查接待方案
2014/02/27 职场文书
2015年度销售个人工作总结
2015/03/31 职场文书
2015年初一班主任工作总结
2015/05/13 职场文书
记者节感言
2015/08/03 职场文书
总经理聘用协议书
2015/09/21 职场文书
redis通过6379端口无法连接服务器(redis-server.exe闪退)
2021/05/08 Redis