import traceback try: raise Exception(‘这是一个错误信息‘) except: errFile=open(‘err.txt‘,‘w‘) errFile.write(traceback.format_exc()) errFile.close() print(‘错误信息已经写入err.txt文件中‘)
原文地址:https://www.cnblogs.com/chenxi188/p/10523957.html
时间: 2024-11-03 12:01:12
import traceback try: raise Exception(‘这是一个错误信息‘) except: errFile=open(‘err.txt‘,‘w‘) errFile.write(traceback.format_exc()) errFile.close() print(‘错误信息已经写入err.txt文件中‘)
原文地址:https://www.cnblogs.com/chenxi188/p/10523957.html