标签: python python-3.x exception-handling
例如:
def f(): a() b() c() def main(): f()
我希望能够捕获a如果出现的异常,并继续b,就像它没有发生一样。 可以吗?
a
b