要將兩個文件合并成一個文件,可以使用Python的文件操作功能。具體步驟如下:
open()
函數,指定文件路徑和打開模式為'r'
:file1 = open('file1.txt', 'r')
open()
函數:file2 = open('file2.txt', 'r')
read()
或readlines()
方法:content1 = file1.read()
content2 = file2.read()
file1.close()
file2.close()
open()
函數,指定打開模式為'w'
:merged_file = open('merged_file.txt', 'w')
merged_file.write(content1)
merged_file.write(content2)
merged_file.close()
完成上述步驟后,兩個文件的內容就會合并到一個新文件中。請注意,這只適用于文本文件,對于二進制文件如圖片或視頻等,需要使用不同的方法來合并。