一、使用sys模块将文件保存到指定文件中 import sys log = open('console .log', 'w') sys.stdout = log sys.stderr = log 二、使用logging模块