• 2022-07-02
    处理异常时,要捕获异常发生的原因,可以使用以下语句( ):
    A: try: 代码块 except Exception
    B: try: 代码块 exception ExceptionName
    C: try: 代码块 except Exception as e
    D: try: 代码块 except Exception e