1 #讀文件: 2 #第一種方法: 3 f = open('file path', 'r') 4 print(f.read()) 5 f.close() 6 7 #第二種方法: 8 try: 9 f = open('file path', 'r') 10 print(f.read()) 11 finally: 12 if f: 13 f.close() 14 15 #第三種方法(簡易): 16 with open('file path', 'r') as f: 17 print(f.read()) 18 19 20 f=open('file path', 'r') 21 for line in f.readline(): 22 print(line.strip()) 23 f.close() 24 25 26 #寫文件 27 #寫入字符串: 28 input = open('file path', 'w') 29 input.write(str) 30 input.close() 31 32 追加模式參數爲'a' 33 寫入二進制模式'wb' 34