python 文件读写和编码

  • 2019 年 10 月 10 日
  • 筆記

Read the entire file as a single string

with open('somefile.txt', 'rt') as f: data = f.read()

Iterate over the lines of the file

with open('somefile.txt', 'rt') as f: for line in f: # process line …

Write chunks of text data

with open('somefile.txt', 'wt') as f: f.write(text1) f.write(text2) …

Redirected print statement

with open('somefile.txt', 'wt') as f: print(line1, file=f) print(line2, file=f) …

代编码

with open('somefile.txt', 'rt', encoding='latin-1') as f:

newline

with open('somefile.txt', 'rt', newline='') as f:

errors

Replace bad chars with Unicode U+fffd replacement char f = open('sample.txt', 'rt', encoding='ascii', errors='replace') f.read() 'Spicy Jalape?o!' Ignore bad chars entirely g = open('sample.txt', 'rt', encoding='ascii', errors='ignore') g.read() 'Spicy Jalapeo!'