在Python中,可以使用內置的open()
函數來處理文件。open()
函數接受兩個參數:文件名和打開模式。打開模式通常有以下幾種:
FileNotFoundError
異常。下面是一些使用open()
函數的示例:
# 讀取文件
with open('example.txt', 'r') as file:
content = file.read()
print(content)
# 寫入文件
with open('example.txt', 'w') as file:
file.write('Hello, World!')
# 追加內容
with open('example.txt', 'a') as file:
file.write('\nThis is an appended line.')
# 讀取二進制文件
with open('example.bin', 'rb') as file:
binary_content = file.read()
print(binary_content)
注意:在使用with
語句時,文件會在代碼塊執行完畢后自動關閉。這是一種很好的做法,可以避免忘記關閉文件導致的資源泄漏。