1.如何操作文件?
open(文件路径,读写模式,字符编码)
方式一:
f = open(文件路径,读写模式,字符编码)#f = open(r‘D:\n\ts.txt’,r,encoding =‘utf8’)
print(f) f.close #文件打开后还要手动关闭
方式二:
with open(文件路径,读写模式,字符编码)as 变量名: 子代码运行结束后自动调用close()方法
print(变量名)
2.文件读写模式:
1.只读模式
2.只写模式
3.只追加模式
https://www.cnblogs.com/Dominic-Ji/articles/10992576.html
标签:文件,编码,简介,读写,模式,字符,open From: https://www.cnblogs.com/lgb114/p/16615700.html