6、復制文件
阿新 • • 發佈:2018-04-10
jpg file image col close 框架 ima 輸入 想要
復制文件
要求:
1、將原文件xxx.txt中的內容復制到新的文件裏
2、新文件的文件名為xxx(復制).txt,即原文件名+復制進行命名
大框架:
1、輸入想要復制的文件xxx.txt input() 2、創建一個文件xxx(復制).txt f1 = open("xxx.(復制)","w") 3、打開文件xxx.txt f2 = open("xxx.txt","r") 4、復制xxx.txt中的內容到xxx(復制).txt中 f1.write(f2.read()) 5、關閉兩個文件 f1.close() f2.close()
例如,原文件名為hello.txt
#1、首先輸入想要復制的文件 copy_file = input("請輸入你要復制的文件名(後綴):") #2、創建一個復制文件命名為xxxx(復制).txt position = copy_file.rfind(".") #找到點“.”的位置 new_namefile = copy_file[:position]+"(復制)"+copy_file[position:] f1 = open(new_namefile,"w") #3、打開原文件 f2 = open(copy_file,"r") #4、復制原文件內容到復制文件 f1.write(f2.read()) #5、關閉文件f1.close() f2.close()
執行程序:輸入hello.txt 註意:一定要帶有後綴
6、復制文件