Python 讀取檔案並輸出
如何讀取檔案並輸出?
在 Python 中,你可以使用 open()
函數開啟一個文件,然後使用 read()
方法讀取文件內容。
詳細步驟:
開啟檔案:
<code class="python">file = open("my_file.txt", "r")</code>
其中:
"my_file.txt"
是要開啟的檔案路徑。 "r"
表示以唯讀模式開啟檔案。 讀取檔案內容:
<code class="python">file_content = file.read()</code>
此行程式碼將整個檔案內容讀入 file_content
變數中。
輸出檔案內容:
<code class="python">print(file_content)</code>
此行程式碼將在控制台中列印檔案內容。
關閉檔案:
<code class="python">file.close()</code>
讀完檔案後,請務必關閉檔案以釋放資源。
完整範例:
<code class="python">with open("my_file.txt", "r") as file: file_content = file.read() print(file_content)</code>
使用 with
語句可以自動在區塊末尾關閉文件,從而簡化程式碼。
以上是python怎麼讀取檔案並輸出的詳細內容。更多資訊請關注PHP中文網其他相關文章!