Python 中開啟檔案有兩種方法:open() 函數和 with 語句。 open() 函數用於開啟檔案並傳回檔案對象,檔案物件表示檔案句柄。 with 語句用於建立文件對象並自動關閉該對象,即使在異常情況下也能正確關閉。
Python 開啟檔案
如何開啟檔案?
Python 中開啟檔案有兩種基本方法:
使用open() 函數
open() 函數用來開啟一個文件,並傳回一個文件物件。文件物件代表文件的句柄,可用作其他文件操作。
語法:
<code class="python">file_object = open(filename, mode)</code>
開啟模式
使用 with 語句
with 語句可用來建立檔案物件並自動關閉該物件。即使在異常情況下,文件物件也會被正確關閉。
語法:
<code class="python">with open(filename, mode) as file_object: # perform file operations</code>
以上是python如何打開的詳細內容。更多資訊請關注PHP中文網其他相關文章!