Python 2.x 中如何使用open()函數開啟檔案
在Python 2.x版本中,使用open()函數可以開啟並操作檔案。 open()函數接受兩個參數:檔案名稱和開啟模式。檔案名稱可以是相對路徑或絕對路徑,而開啟模式則決定如何操作該檔案。以下將介紹open()函數的用法,並提供一些範例程式碼。
開啟模式:
範例程式碼如下:
file = open('example.txt', 'r') content = file.read() print(content) file.close()
file = open('example.txt', 'w') file.write('Hello, world!') file.close()
file = open('example.txt', 'a') file.write(' This is a new line.') file.close()
file = open('example.txt', 'r') for line in file: print(line) file.close()
with open('example.txt', 'r') as file: content = file.read() print(content)
以上是Python 2.x 中如何使用open()函數開啟文件的詳細內容。更多資訊請關注PHP中文網其他相關文章!