Python是一種高級編程語言,很多人喜歡使用它來進行開發工作。然而,在進行開發工作的時候,經常會用到文件操作。比如讀取、寫入、修改文件等,而改動文件時一定要非常小心,以防意外發生。
#打開文件 file = open('example.txt', 'w') #寫入數據 file.write('This is the example text file.\n') file.write('Entering the second line.\n') file.write('Ending the file.\n') #關閉文件 file.close() #打開文件進行讀取 file = open('example.txt', 'r') text = file.read() print(text) #關閉文件 file.close() #改變文件內容 file = open('example.txt', 'a') file.write('Appending to the file.\n') file.write('Adding another line.\n') file.close() #讀取修改后的文件內容 file = open('example.txt', 'r') text = file.read() print(text) #關閉文件 file.close() #替換文件中的內容 with open('example.txt', 'r') as file: text = file.read() text = text.replace('Appending', 'Replacing') with open('example.txt', 'w') as file: file.write(text) #讀取最終修改后的文件內容 with open('example.txt', 'r') as file: text = file.read() print(text)
使用Python文件操作時,請務必注意對文件的慎重處理,以免造成不必要的麻煩。同時,也要記住定期備份文件,以應對意外情況。
上一篇vue大數據中控臺