1. 程式人生 > >python讀寫檔案固定程式碼格式

python讀寫檔案固定程式碼格式

import os

path=“D:/a/b/c/d/test.txt” file_path,file_name=os.path.split(path) if not os.path.exists(file_path): os.makedirs(file_path)

file=open(path,“a”)