文件操作
Posted 648071634com
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件操作相关的知识,希望对你有一定的参考价值。
文件操作
小王要变强.txt
1.只读
1.文件路径:d:小王要变强.txt
2.知道编码方式:utf-8 gbk
3.对文件的操作方式:只读,只写,读写,写读,追加。。。。
f=open("d:小王要变强",mode="r",encode="utf-8")
content=f.read()
print(content)
f.close()
以什么 方式储存的,就用什么方式打开
2.只写
#先将源文件的内容删除,再写
f=open("文件名",mode="w",encode="utf-8")
f.write()
f.close()b
f=open("文件名",mode="wb")
f.write(.encode("utf-8"))
f.close()
3.追加a
f=open("文件名",mode="a",encode="utf-8")
f.write("feaf")
f.close()
4.读写
f=open("文件名",mode="r+",encode="utf-8")
print(f.read())
f.write("feawfea")
f.close()
f=open("文件名",mode="r+b",encode="utf-8")#以bytes类型的读写
print(f.read())
f.write("feawfea")
f.close()w
f=open("文件名",mode="w+",encode="utf-8")
f.seek()
print(f.read())
f.write("feawfea")
f.close()
功能详解
以上是关于文件操作的主要内容,如果未能解决你的问题,请参考以下文章