Created
July 26, 2012 05:54
-
-
Save jlyu/3180487 to your computer and use it in GitHub Desktop.
有关异常处理的细微区别
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 代码段A | |
try: | |
statement_A | |
except ...: | |
... | |
else: | |
statement_B | |
## 代码段B | |
try: | |
statement_A | |
statement_B | |
except ...: | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment