1. 排除文件打开方式错误
r只读,r+读写,不创建
w新建只写,w+新建读写,二者都会将文件内容清零
(以w方式打开,不能读出。w+可读写)
w+与r+区别:
r+:可读可写,若文件不存在,报错;w+: 可读可写,若文件不存在,创建
r+与a+区别:
1 fd = open("1.txt",\'w+\') 2 fd.write(\'123\') 3 fd = open("1.txt",\'r+\') 4 fd.write(\'456\') 5 fd = open("1.txt",\'a+\') 6 fd.write(\'789\')