二进制读写不需要指定编码,因为本身就是二进制的
其中分为:
示例:
f=open('a.txt','wb')#文件写f.write('11111\n')f.write('2222\n')#关闭f.close()