python 資訊同時輸出到控制台與檔案

來源:互聯網
上載者:User

標籤:參考   class   資訊   and   debug   with   代碼   readlines   his   

python編程中,往往需要將結果用print等輸出,如果希望輸出既可以顯示到IDE的螢幕上,也能存到檔案中(如txt)中,該怎麼辦呢?

方法1

可通過日誌logging模組輸出資訊到檔案或螢幕。但可能要設定log的level或輸出端,對於同時需要記錄debug error等資訊的較為合適,官方教程推薦學慣用更規範的logger來操作。 
例如,可參考來自官網的這段代碼。

import logginglogging.basicConfig(filename=‘log_examp.log‘,level=logging.DEBUG)logging.debug(‘This message should go to the log file‘)logging.info(‘So should this‘)logging.warning(‘And this, too‘)
  • 1
  • 2
  • 3
  • 4
  • 5
方法2

利用print輸出兩次 
比如這裡我想輸出程式的path和程式的檔案名稱

import os# 第一句輸出到consle:print("filepath:",__file__,"\nfilename:",os.path.basename(__file__))# 第二句輸出到txt:with open("outputlog.txt","a+") as f:    print("filepath:",__file__,    "\nfilename:",os.path.basename(__file__))    #當然 也可以用f.write("info")的方式寫入檔案
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
方法3

利用輸出重新導向輸出兩次 
同樣輸出程式path和檔案名稱

import osimport systemp=sys.stdout # 記錄當前輸出指向,預設是conslewith open("outputlog.txt","a+") as f:    sys.stdout=f   # 輸出指向txt檔案    print("filepath:",__file__,    "\nfilename:",os.path.basename(__file__))    print("some other information")    print("some other")    print("information")    sys.stdout=temp # 輸出重新導向回consle    print(f.readlines()) # 將記錄在檔案中的結果輸出到螢幕

python 資訊同時輸出到控制台與檔案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.