参考 https://www.cnblogs.com/linhaifeng/articles/5984922.html
f=open('陈粒1',encoding='utf-8') open
data=f.read() read
print(data)
f.close() close
readable() 是否可读
readline() 读一行
readlines() 读全部,成一个列表..和read不一样
f=open('陈粒','w',encoding='utf-8') r w a 默认只读 w 写 没有文件创建,有文件覆盖
write 写
writable 是否可写
writelines 写列表
f=open('陈粒1','a',encoding='utf-8') a 追加模式
f.write('写到文件最后')
'r+'读写模式
在光标上写
f.encoding 查看文件编码方式
操作命令太长用接
with open('gxr','r',encoding='utf8') as src_f, #太长用接 open('gxr','w',encoding='utf8') as dst_f: data=src_f.read() #读取gxr内容 dst_f.write(data) #写到gxr1文件