1、如何用Python刪除一個檔案
os.remove(filename)或者os.unlink(filename)。
2、Python如何copy一個檔案
shutil模組裡有一個copyfile函式可以實現檔案的拷貝。