python檔案的讀入讀出重新命名

2021-10-03 05:25:04 字數 475 閱讀 1563

import os#匯入檔案頭

fo = open("c:\\users\\lys\\desktop\\1.txt", 'w+')#用w+覆蓋重寫的方法開啟檔案

fo.write("hello world")#往裡面寫入字串

position = fo.seek(0, 0)#把指標移到最前面

string = fo.readline()#讀入一行字串

fo.close()#關閉檔案

f2 = open("c:\\users\\lys\\desktop\\2.txt", 'w+')#開啟檔案

f2.write(string)#寫入記憶體的字串

os.rename("c:\\users\\lys\\desktop\\1.txt", "c:\\users\\lys\\desktop\\3.txt")#重新命名第乙個檔案

f2.close()#關閉第二個檔案

檔案讀入讀出方式

acm題目中有時測試樣例的輸入比較麻煩,一次次手動輸入肯定很費時間。所以用freopen函式,是一種比較快捷的辦法。具體 是 freopen in.txt r stdin freopen out.txt w stdout 事先應該在所在工程的原始檔處 右擊工程可以開啟所在資料夾 在這個資料夾裡面新建...

cookie的讀入和讀出

寫入cookie中 在mvc的控制器中 httpcookie getuserid new httpcookie uid 要儲存的值 getuserid.expires datetime.now.adddays 7 設定過期時間 this.response.cookies.add getuserid ...

python檔案 資料夾的移動 複製 刪除 重新命名

import os.path shutil shutil包系統自帶,無需安裝 複製單個檔案 shutil.copy c a c b 複製並重命名新檔案 shutil.copyfile c a c b 複製整個目錄 備份 shutil.copytree c a c b new a 刪除檔案 os.un...