1. 程式人生 > >Pthon 文件追加模式

Pthon 文件追加模式

open 文件 odi nbsp 存在 bsp 不存在 close lines

a, 追加模式【可讀; 不存在則創建;存在則只追加內容】

#文件寫模式
f=open(‘a.txt‘,‘a‘,encoding=‘utf-8‘)
#文件寫
f.write(‘11111\n‘)
f.write(‘2222\n‘)
f.write(‘3333\n4444\n‘)
#文件寫多行
f.writelines([‘a\n‘,‘b\n‘,‘c\n‘])
#關閉
f.close()

Pthon 文件追加模式