f=open('mhposition.txt','r')/表示磁碟目錄...f.close()
./等於不寫表示當前目錄
../表示上一級目錄
with open('/path/to/file', 'r') as f:這樣就不用寫close了!print(f.read())
read()
會一次性讀取檔案的全部內容
而readlines()
一次讀取所有內容並按行返回list,非常好用!
for line in f.readlines():5.寫檔案print(line.strip())#用於把換行符號去掉
with open('/users/michael/test.txt', 'w') as f:f.write('hello, world!')
Python學習筆記 四 檔案操作
讀取鍵盤輸入 buf raw input please input your name buf raw input 開啟檔案 如果hello.txt不存在 fp open hello.txt w w是說建立這個檔案,以寫的方式開啟 fp.write text fp.close 如果hello.txt...
Python學習筆記(四) 檔案讀取
教程 莫煩python 環境 pycharm 寫開啟 寫入內容 text this is a test.nthe second line nfinal line my file open myfile.txt a 以寫形式開啟檔案 my file.write text 往檔案裡寫內容 my file...
python學習 四 檔案處理
我們常用open來開啟檔案 open file,mode r buffering 1,encoding none,errors none,newline none,closefd true,opener none open file and return a stream.raise ioerror...