Python中將打印輸出日志文件


一. 利用sys.stdout將print行導向到你定義的日志文件中,例如:

import sys # make a copy of original stdout route stdout_backup = sys.stdout
# define the log file that receives your log info log_file = open("message.log", "w")
# redirect print output to log file sys.stdout = log_file print "Now all print info will be written to message.log" # any command line that you will execute ... log_file.close() # restore the output to initial pattern sys.stdout = stdout_backup print "Now this will be presented on screen"


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM