1. 程式人生 > >python建立檔案並寫入內容

python建立檔案並寫入內容

#建立檔案,msg即要寫入的內容
def create__report(msg):
    report_path=get_aft_path()+"\\Report\\report.html"
    f=open(pass_report_path,"a")
    f.write("<meta http-equiv='Content-Type' content='text/html; charset=utf-8'>")
    f.write("<p align='right'>"+msg+"</p>")
    f.close