有关异常处理的细微区别
## 代码段A try: statement_A except ...: ... else: statement_B ## 代码段B try: statement_A statement_B except ...: ...