Skip to content

Instantly share code, notes, and snippets.

@jlyu
Created July 26, 2012 05:54
Show Gist options
  • Save jlyu/3180487 to your computer and use it in GitHub Desktop.
Save jlyu/3180487 to your computer and use it in GitHub Desktop.
有关异常处理的细微区别
## 代码段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