Python中的「w」模式開啟一個檔案用於寫入和更新。它會覆蓋現有文件,如果文件不存在,則會建立新文件。
與「r」(唯讀)和「w」(只寫)等模式不同,「w」可讓您從檔案中寫入和讀取資料。然而,使用「w」模式時會出現一個常見問題:如何從用「w」開啟的檔案中讀取?
要從用「w」開啟的檔案讀取,您需要執行下列步驟:
file = open("myfile.txt", "w+")
file.write("Hello, world!")
file.seek(0)
data = file.read()
下面是完整的打開示例一個“w”模式的文件,寫入一些數據,然後讀取它:
with open("myfile.txt", "w+") as file: # Write data to the file file.write("This is line 1.\n") file.write("This is line 2.\n") # Seek the beginning of the file file.seek(0) # Read data from the file data = file.read() # Print the data print(data)
輸出:
This is line 1. This is line 2.
以上是如何讀取以 Python 的「w」模式開啟的檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!