本节内容
1、文件常用操作汇总
2、打开文件
3、操作文件
4、关闭文件
一、文件常用操作汇总
二、打开文件
1、普通打开模式
- r,英文:read,只读模式(默认)
- w,英文:write,只写模式(不可读,不存在则创建新文件,存在则删除内容)
- a,英文:append,追加模式(不可读,不存在则创建,存在则只追加内容
2、同时读写模式
- r+,可读写文件(可读;可写;可追加,不存在文件则报错)
- w+,可写读文件(可读,可写,创建新文件)
- a+,可追加和读文件(可读,可追加,不存在则创建)
3、二进制打开模式
- rb,二进制读
- wb,二进制写
- ab,二进制追加
三、操作文件
文件内容:
Somehow, it seems the love I knew was always the most destructive kind 不知为何,我经历的爱情总是最具毁灭性的的那种 Yesterday when I was young 昨日当我年少轻狂
"htmlcode">
f = open("yesterday2",'r',encoding="utf-8")
#默认读取全部字符
print(f.read())
f.close()
#输出
Somehow, it seems the love I knew was always the most destructive kind
不知为何,我经历的爱情总是最具毁灭性的的那种
Yesterday when I was young
昨日当我年少轻狂
f = open("yesterday2",'r',encoding="utf-8")
#只读取10个字符
print(f.read(10))
f.close()
#输出
Somehow, i
f = open("yesterday2",'r',encoding="utf-8") #默认读取全部字符 print(f.read()) f.close() #输出 Somehow, it seems the love I knew was always the most destructive kind 不知为何,我经历的爱情总是最具毁灭性的的那种 Yesterday when I was young 昨日当我年少轻狂 f = open("yesterday2",'r',encoding="utf-8") #只读取10个字符 print(f.read(10)) f.close() #输出 Somehow, i
注:只有当文件有读权限时,才可以操作这个函数
2、获取文件句柄所在的指针的位置tell()
获取文件句柄所在的指针的位置
f = open("yesterday2",'r',encoding="utf-8") print(f.read(10)) #获取指针位置 print(f.tell()) f.close() #输出 Somehow, i #读取的内容 10 #指针位置
"htmlcode">
f = open("yesterday2",'r',encoding="utf-8")
print(f.read(10))
#设置之前的指针位置
print(f.tell())
f.seek(0)
#设置之后的指针位置
print(f.tell())
f.close()
#输出
Somehow, i #读取文件的内容
10 #设置之前的指针位置
0 #设置之后的指针位置
"htmlcode">
f = open("yesterday2",'r',encoding="utf-8")
print(f.encoding)
f.close()
#输出
utf-8
"htmlcode">
f = open("yesterday2",'r',encoding="utf-8")
print(f.fileno())
f.close()
#输出
3
"htmlcode">
f = open("yesterday2",'r',encoding="utf-8")
print(f.name)
f.close()
#输出
yesterday2
"htmlcode">
f = open("yesterday2",'r',encoding="utf-8")
print(f.isatty())
f.close()
#输出
False #表示不是一个终端设备
"htmlcode">
f = open("yesterday2",'r',encoding="utf-8")
print(f.seekable())
f.close()
#输出
True
"htmlcode">
f = open("yesterday2",'r',encoding="utf-8")
print(f.readable())
f.close()
#输出
True
10、writeable()
f = open("yesterday2",'r',encoding="utf-8") print(f.read(10)) #设置之前的指针位置 print(f.tell()) f.seek(0) #设置之后的指针位置 print(f.tell()) f.close() #输出 Somehow, i #读取文件的内容 10 #设置之前的指针位置 0 #设置之后的指针位置
f = open("yesterday2",'r',encoding="utf-8") print(f.encoding) f.close() #输出 utf-8
"htmlcode">
f = open("yesterday2",'r',encoding="utf-8")
print(f.fileno())
f.close()
#输出
3
"htmlcode">
f = open("yesterday2",'r',encoding="utf-8")
print(f.name)
f.close()
#输出
yesterday2
"htmlcode">
f = open("yesterday2",'r',encoding="utf-8")
print(f.isatty())
f.close()
#输出
False #表示不是一个终端设备
"htmlcode">
f = open("yesterday2",'r',encoding="utf-8")
print(f.seekable())
f.close()
#输出
True
"htmlcode">
f = open("yesterday2",'r',encoding="utf-8")
print(f.readable())
f.close()
#输出
True
10、writeable()
f = open("yesterday2",'r',encoding="utf-8") print(f.fileno()) f.close() #输出 3
f = open("yesterday2",'r',encoding="utf-8") print(f.name) f.close() #输出 yesterday2
"htmlcode">
f = open("yesterday2",'r',encoding="utf-8")
print(f.isatty())
f.close()
#输出
False #表示不是一个终端设备
"htmlcode">
f = open("yesterday2",'r',encoding="utf-8")
print(f.seekable())
f.close()
#输出
True
"htmlcode">
f = open("yesterday2",'r',encoding="utf-8")
print(f.readable())
f.close()
#输出
True
10、writeable()
f = open("yesterday2",'r',encoding="utf-8") print(f.isatty()) f.close() #输出 False #表示不是一个终端设备
f = open("yesterday2",'r',encoding="utf-8") print(f.seekable()) f.close() #输出 True
"htmlcode">
f = open("yesterday2",'r',encoding="utf-8")
print(f.readable())
f.close()
#输出
True
10、writeable()
f = open("yesterday2",'r',encoding="utf-8") print(f.readable()) f.close() #输出 True
文件是否可写
f = open("yesterday2",'r',encoding="utf-8") print(f.writable()) f.close() #输出 False #文件不可写
11、flush()
写数据时,写的数据不想存内存中缓存中,而是直接存到磁盘上,需要强制刷新
> f = open("yesterday2","w",encoding="utf-8") #这时'hello word'在缓存中 > f.write("hello word") #强刷到磁盘上 > f.flush()
这个怎么实验呢?在cmd命令行中,cd到你文件所在的路径下,然后输入python,在Python命令行中输入上面代码
①cd d:\PycharmProjects\pyhomework\day3下(因为我的被测文件在这个文件夹下)
②在这个目录下输入Python命令行,然后进行测试
③强制刷新之前
"//img.jbzj.com/file_images/article/202002/202029135739596.png" alt="" />
⑤强刷后文件中的内容变化
注:以写的模式打开文件,写完一行,默认它是写到硬盘上去的,但是其实它不一定写到硬盘上去了。当你刚写完一行,如果此时断电,有可能,你这行就没有写进去,因为这一样还在内存的缓存中(内存中的缓存机制),所以你有不想存缓存,所以就要强制刷新。那一般在什么情况下用呐?比如:存钱
12、closed
判断文件是否关闭
f = open("yesterday2","r",encoding="utf-8") f.read() print(f.closed) #输出 False
13、truncate(截取字符的数)
截取文件中的字符串,打开文件模式一定是追加模式(a),不能是写(w)和读(r)模式
#没有指针 f = open("yesterday2","a",encoding="utf-8") f.truncate(10) f.close() #截取结果 Somehow, i #有指针 f = open("yesterday2","a",encoding="utf-8") f.seek(5) f.truncate(10) f.close() #截取结果 Somehow, i
"color: rgb(255, 0, 0);">14、write()
写入文件内容
f = open("yesterday2","w",encoding="utf-8") f.write("Somehow, it seems the love I knew was always the most destructive kind") f.close()
"htmlcode">
f.close()
更多关于Python文件操作方法请查看下面的相关文章
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
白云城资源网 Copyright www.dyhadc.com
暂无“Python文件操作方法详解”评论...
更新日志
2024年11月08日
2024年11月08日
- 雨林唱片《赏》新曲+精选集SACD版[ISO][2.3G]
- 罗大佑与OK男女合唱团.1995-再会吧!素兰【音乐工厂】【WAV+CUE】
- 草蜢.1993-宝贝对不起(国)【宝丽金】【WAV+CUE】
- 杨培安.2009-抒·情(EP)【擎天娱乐】【WAV+CUE】
- 周慧敏《EndlessDream》[WAV+CUE]
- 彭芳《纯色角3》2007[WAV+CUE]
- 江志丰2008-今生为你[豪记][WAV+CUE]
- 罗大佑1994《恋曲2000》音乐工厂[WAV+CUE][1G]
- 群星《一首歌一个故事》赵英俊某些作品重唱企划[FLAC分轨][1G]
- 群星《网易云英文歌曲播放量TOP100》[MP3][1G]
- 方大同.2024-梦想家TheDreamer【赋音乐】【FLAC分轨】
- 李慧珍.2007-爱死了【华谊兄弟】【WAV+CUE】
- 王大文.2019-国际太空站【环球】【FLAC分轨】
- 群星《2022超好听的十倍音质网络歌曲(163)》U盘音乐[WAV分轨][1.1G]
- 童丽《啼笑姻缘》头版限量编号24K金碟[低速原抓WAV+CUE][1.1G]