Python中使用标准库中的linecache中的getline方法可以从某个文件中读取出特定的一行。比如:
print linecache.getline('2.1_open.py', 4)
将返回我上一节事例代码文件2.1_open.py的第4行文字,输出结果:
f = open('/home/evergreen/桌面/test’)
查看linecache中的实现(我用的是Ulipad,所以直接将光标停留在linecache处,按F6键)
[ ](http://www.cnblogs.com/coderzh/archive/2008/05/10/1191649.html)
Python 天天美味系列(总)
Python 天天美味(16) - 过滤字符串的技巧,map与itertools.imap
Python 天天美味(18) - linecache.getline()读取文件中特定一行
Python 天天美味(19) - 时间处理datetime
Python 天天美味(20) - 命令行参数sys.argv
[温馨提示]:该文章由原博客园导入而来,如排版效果不佳,请移步:http://www.cnblogs.com/coderzh/archive/2008/05/10/1191641.html
作者:CoderZh
微信关注:hacker-thinking (代码随想)
本文出处:https://blog.coderzh.com/2008/05/10/1191641/
文章版权归本人所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。