要使用Python的open函數來讀取文件,你需要使用以下步驟:
file = open("example.txt", "r")
content = file.read()
也可以使用文件對象的readline方法逐行讀取文件內容:
line = file.readline() # 讀取一行內容
file.close()
完整的讀取文件的代碼示例:
file = open("example.txt", "r")
content = file.read()
print(content)
file.close()
注意:為了確保文件能夠正確關閉,可以使用with語句來打開文件。with語句會在代碼塊結束后自動關閉文件,無需手動調用close方法。例如:
with open("example.txt", "r") as file:
content = file.read()
print(content)
這樣可以避免忘記關閉文件而導致資源泄漏的問題。