如果我有以下代码:
try:
execfile("script.py")
except ## unsure what exception goes here...
continue:
try:
execfile("other.py")
except ## unsure what exception goes here...
continue:
如何从 script.py 中捕获所有错误,将其保存到文件中,然后继续执行下一个调用的脚本
任何人有任何想法或线索?