1. 程式人生 > >python基礎--文件處理

python基礎--文件處理

open 處理 文件的 rb+ with 讀寫 PE utf-8 odin

1.文件處理模式

r   以讀的方式打開
w  以寫的方式打開
a  以追加的方式打開
r+ 以讀寫方式打開
w+以讀寫方式打開
a+以讀寫方式打開
rb  以二進制讀的方式打開
wb以二進制寫的方式打開
ab以二進制追加的方式打開
rb+  以二進制讀寫的方式打開
wb+以二進制讀寫的方式打開
ab+以二進制讀寫的方式打開
f=open(‘新建文本文件.txt‘,‘r‘,encoding=‘utf-8‘)
for line in f:
print(line)
f.close()
with open(‘新建文本文件.txt‘,‘r‘,encoding=‘utf-8‘)
for line in f:
print(line)

2.以w和a模式處理文件的區別

with open(‘新建文本文件.txt‘,‘w‘,encoding=‘utf-8‘)
with open(‘新建文本文件.txt‘,‘a‘,encoding=‘utf-8‘)
w模式會覆蓋之前的文件,a模式不會覆蓋之前的文件,而是追加寫在文件末尾

python基礎--文件處理