1.读文件
open("file","r") file放入文件路径
f = open("/test.txt","r")
f.read() 这样就可以读一个文件了。。
2.写文件
open("file","w") file放入文件路径
f = open("/test.txt","w")
f.write("xxx") 这样就可以写一个文件了。。
ps:上述 记得用完记得关闭流 f.close();
3.读写,利用with
with open("file","w") as f:
f.write("xxx")
如果需要设定字符的编码等,查看源码,设定参数
4.StringIo,BytesIo
内存中读写
ps:真的一行解决读写。