首頁 >後端開發 >Python教學 >python怎麼讀取檔案並輸出

python怎麼讀取檔案並輸出

下次还敢
下次还敢原創
2024-04-02 18:21:37883瀏覽

Python 讀取檔案並輸出

如何讀取檔案並輸出?

在 Python 中,你可以使用 open() 函數開啟一個文件,然後使用 read() 方法讀取文件內容。

詳細步驟:

  1. 開啟檔案:

    <code class="python">file = open("my_file.txt", "r")</code>

    其中:

  2. "my_file.txt" 是要開啟的檔案路徑。
  3. "r" 表示以唯讀模式開啟檔案。
  4. 讀取檔案內容:

    <code class="python">file_content = file.read()</code>

    此行程式碼將整個檔案內容讀入 file_content 變數中。

  5. 輸出檔案內容:

    <code class="python">print(file_content)</code>

    此行程式碼將在控制台中列印檔案內容。

  6. 關閉檔案:

    <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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn