python学习-35 文件处理
2019-07-24 09:18:15来源:博客园 阅读 ()
1.简单的打开文件
f=open('test.txt',encoding='utf-8') # 打开了名字为test.txt的文件里的内容 data=f.read() # 读取里面的内容 print(data)
f.close()
运行结果:
hello,word
Process finished with exit code 0
2.可读性
f=open('test.txt','r',encoding='utf-8') data=f.readable() # 是否可读 print(data) f.close()
运行结果:
True
Process finished with exit code 0
3.一行一行读取内容
f=open('test.txt','r',encoding='utf-8') print(f.readline(),end='') print(f.readline()) print(f.readline()) print(4,f.readline()) print(5,f.readline()) f.close()
运行结果:
1.hello,word 2.hello,word 3.hello,word 4 5 Process finished with exit code 0
4.读取全部内容
f=open('test.txt','r',encoding='utf-8') data=f.readlines() print(data) f.close()
运行结果:
['1.hello,word\n', '2.hello,word\n', '3.hello,word\n'] Process finished with exit code 0
5.写入操作 (只能是字符串类型)
1.
f=open('test.txt','w',encoding='utf-8') f.write('1111\n') # 想换行需要加\n f.write('222') f.close()
打开test.txt文件就会看到写入的1111和222
2.写入列表
f=open('test.txt','w',encoding='utf-8') f.writelines(['456\n','123\n','asd\n']) f.close()
可以打开自己的test.txt文件内容查看
3.追加
f=open('test.txt','a',encoding='utf-8') f.write('\n123')
4.
f1 = open('test.txt','r',encoding='utf-8') data = f1.readlines() f1.close() f2 = open('test_new.txt','w',encoding='utf-8') # 新建一个文件 f2.write(data[0]) # 删除除第一行外的其他行,并写入到新文件里 f2.close()
5.
with open('test.txt','w') as f: # 写入文件并自动关闭,不用手动close() f.write('123')
6.从一个文件里读取到 文件 然后写入到另一个文件
with open('test.txt','r',encoding='utf-8') as f,\ open('test_new.txt','w',encoding='utf-8') as f1: data = f.read() f1.write(data)
原文链接:https://www.cnblogs.com/liujinjing521/p/11166130.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