python編程中,每每須要將結果用print等輸出,若是但願輸出既能夠顯示到IDE的屏幕上,也能存到文件中(如txt)中,該怎麼辦呢?python
可經過日誌logging模塊輸出信息到文件或屏幕。但可能要設置log的level或輸出端,對於同時須要記錄debug error等信息的較爲合適,官方教程推薦學習用更規範的logger來操做。
例如,可參考來自官網的這段代碼。編程
import logging logging.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')
利用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")的方式寫入文件
利用輸出重定向輸出兩次
一樣輸出程序path和文件名this
import os import sys temp=sys.stdout # 記錄當前輸出指向,默認是consle with 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()) # 將記錄在文件中的結果輸出到屏幕