python学习-37 其他的文件处理方法
2019-07-24 09:21:10来源:博客园 阅读 ()
f = open('test.txt','r+',encoding='utf-8') f.flush() # 刷新 f.readline() print(f.tell()) # 说明光标位置在哪里 (\r\n 也算两个字节) print('-------------------------------') f.seek(3) # 在文件test.txt里第一行abc123, 3的位置 print(f.tell()) print(f.read()) f.truncate(10) # 截取
运行结果:
7
-------------------------------
3
13
123
Process finished with exit code 0
seek 方法的补充
1.光标的移动
f = open('test.txt','rb') # 以2进制的方式 print('目前光标的位置:',f.tell()) print('--------------------') f.seek(10) print(f.tell()) print('-------------') f.seek(3) # 默认从文件开始计算光标位置 print(f.tell()) print(f.read()) print('-------------') f.seek(10,1) # 相对路径,从上一步的光标位置开始计算10字节 print(f.tell()) print('--------------') f.seek(-10,2) # 从文件末尾位置开始计算10字节 print(f.tell()) # 光标在从前往后数的第40字节的位置 print(f.read()) # 读取现在光标的位置 print('-----------')
运行结果:
目前光标的位置: 0 -------------------- 10 ------------- 3 b'13\r\n123\r\n\xe4\xbd\xa0\xe5\xa5\xbd\r\nhello,word\r\nqwertyuiop46579813' ------------- 60 -------------- 40 b'op46579813' ----------- Process finished with exit code 0
2.想要查看文件的最后一行
f = open('test.txt','rb') for i in f: offs = -10 while True: f.seek(offs,2) data = f.readlines() if len(data) >1: print('文件的最后一行是%s'%(data[-1].decode('utf-8'))) break offs *= 2
运行结果:
文件的最后一行是2019/7/11/20:56 qwe456
Process finished with exit code 0
原文链接:https://www.cnblogs.com/liujinjing521/p/11172554.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash