created on mon feb 12 00:18:30 2018
@author: myself
"""f = open("data.txt") #開啟檔案
data = f.read() #檔案內容寫入字串data
print(data) #輸出字串
f.close() #關閉檔案,釋放資源
runfile('f:/python/list31.py', wdir='f:/python')
haaaa!
i』m in a file
so cool!
data = "i will be in a file.\nso cool!"
out = open("output.txt","w")
f = out.write(data)
out.close()
created on mon feb 12 00:45:32 2018
@author: myself
"""f = open("list32dataout.txt") #開啟檔案
list = f.read() #讀取檔案內容
p = open("list32datain.txt","w") #新建檔案
p.write(list) #寫入內容
f.close()
p.close()
q = open("list32datain.txt") #開啟新建的檔案
print(q.read()) #開啟寫入的內容
q.close()
created on mon feb 12 00:56:19 2018
@author: myself
"""print("請輸入內容:")
list = input() #記錄控制台輸入的內容
s = open("list32test2in.txt","w") #將list寫入新的檔案中
s.write(list)
s.close()
p = open("list32test2in.txt") #輸出新的檔案
print(p.read())
p.close()
python學習筆記3 python讀寫檔案
一 檔案的開啟模式 1 開啟檔案 1 f open d a.txt w 第乙個引數是檔案的路徑,如果只寫檔案的名字,預設是在當前執行目錄下的檔案 第二個引數是檔案的開啟模式 這種方式開啟檔案,在使用完了之後一定要記得,關閉檔案 f.close 2 with open d a.txt w as f 這...
python學習筆記14(檔案讀寫)
讀檔案 python讀檔案流程 1 開啟檔案 2 讀檔案內容 3 關閉檔案 注釋 1 開啟檔案 open path,flag encoding errors path 要開啟檔案的路徑 路徑前加r flag 開啟方式 r 以唯讀的方式開啟檔案,檔案的描述符放在檔案的開頭 rb 以二進位制格式開啟乙個...
Python學習筆記06
使用 json 函式需要匯入 json 庫 import json json.dumps 用於將 python 物件編碼成 json 字串 json.dumps obj,skipkeys false,ensure ascii true,check circular true,allow nan tr...