1、文件的類型ide
2、打開模式指針
demo文件: file=open('b.txt','w') file.write('Python') file.close() 運行結果: 由於磁盤中沒有b.txt文件,因此會生成新的文件——b.txt。同時在b.txt文件,內容爲Python demo文件: file=open('b.txt','w') file.write('helloworld') file.close() 運行結果: b.txt文件已經存在,當再次運行demo文件,b.txt中的文件內容被替換,變爲helloworld。