# 檔案的copy
# 1獲取要複製的檔名
old_file_name = input("請輸入檔名(注意需要輸入檔案的字尾)")
# 2 開啟要複製的檔案
old_file = open(old_file_name, "r")
# 3 建立乙個新的檔案
# 3.1 建立新的檔名稱 假如:原來的檔名稱為:老檔案.txt -->老檔案[複製].txt
position = old_file_name.rfind(".")
new_file_name = old_file_name[0:position] + "[複製]" + old_file_name[position:]
new_file = open(new_file_name, "w")
# 4 從old 檔案中,讀取資料,寫入到new 檔案中
content = old_file.read()
new_file.write(content)
# 5關閉兩個檔案
old_file.close()
new_file.close()
如有疑問,請發郵件:[email protected]
github:
python系列教程42
宣告 在人工智慧技術教學期間,不少學生向我提一些python相關的問題,所以為了讓同學們掌握更多擴充套件知識更好的理解人工智慧技術,我讓助理負責分享這套python系列教程,希望能幫到大家!由於這套python教程不是要由所寫,所以不如我的人工智慧技術教學風趣幽默,學起來比較枯燥 但它的知識點還是講...
4 2 Python基礎語法
usr bin python3 str input 請輸入 print 你輸入的內容是 str 請輸入 hello python 你輸入的內容是 hello python usr bin python3 x a y b 換行輸出 print x print y print 不換行輸出 print x...
42 python異常捕獲
1.常見異常1.synataxerror 語法錯誤 2.nameerror 試圖訪問的變數名不存在 3.indexerror 索引錯誤,使用的所以你不存在,常為索引超出序列範圍 4.keyerror 使用了對映中不存在的關鍵字 鍵 時引發的關鍵字錯誤 5.typeerror 型別錯誤,內建操作或是函...