如何在Python 中使用多個Open 語句改進檔案處理
在Python 中,open() 函數是用於檔案輸入的多功能工具和輸出。處理多個檔案時,使用 with 語句來確保正確的資源管理是有利的。
情況:
考慮一個從檔案讀取名稱的程式碼片段,並將附加文字附加到特定名稱。目前的實作是按順序開啟文件,這可能不是最佳的。
解:
Python 允許在單一 with 語句中使用多個 open() 語句,以逗號分隔他們。這可以同時處理多個文件並增強資源管理。
<code class="python">def filter(txt, oldfile, newfile): ''' Read a list of names from a file line by line into an output file. If a line begins with a particular name, insert a string of text after the name before appending the line to the output file. ''' with open(newfile, 'w') as outfile, open(oldfile, 'r', encoding='utf-8') as infile: for line in infile: if line.startswith(txt): line = line[0:len(txt)] + ' - Truly a great person!\n' outfile.write(line)</code>
附加說明:
透過以這種方式最佳化檔案處理,開發人員可以增強程式碼可讀性、資源管理和整體效率。
以上是如何在 Python 中使用多個「open()」語句簡化檔案處理?的詳細內容。更多資訊請關注PHP中文網其他相關文章!