摘要:
""" 日志模块的使用 """ import logging # 加上filename,日志会输出到文件里 logging.basicConfig(filename='myProgramLog.txt', level=logging.DEBUG, format=' %(asctime)s - %(l 阅读全文
摘要:
""" 异常信息保存到文件中 """ import traceback try: raise Exception('This is the error message.') except: errorFile = open('errorInfo.txt', 'w') errorFile.write( 阅读全文