I am just now learning Python, and I came across an interesting construct. In Python, the try block has an optional else block. Other than providing a new scope after the try exits normally, what does the else block do for you? Or is that just it?
|
1
|
|
|||
|
|
|
|
The statements in the However, Handling Exceptions notes:
So, if you have a method that could, for example, throw an
If you just put
|
||||
|
|
|
Never used it myself. Looking at Python reference it seems that Dive into python has and example where, if I understand correctly, in If you tried to do work in |
|||
|
|
|
Even though you can't think of a use of it right now, you can bet there has to be a use for it. Here is an unimaginative sample out of my head:
Here you have the variable "something" defined if no error is thrown. You can remove this outside the try block, but then it requires some messy detection if a variable is defined. |
||||||||||
|
|
|
The Actually, even on an Consider this.
Think twice about |
||||||||
|
|
|
I find it really useful when you've got cleanup to do that has to be done even if there's an exception:
|
||||
|
|
|
One use: test some code that should raise an exception.
(This code should be abstracted into a more generic test in practice.) |
||
|
|
|
|
That's it. The 'else' block of a try-except clause exists for code that runs when (and only when) the tried operation succeeds. It can be used, and it can be abused.
Personally, I like it and use it when appropriate. It semantically groups statements. |
||
|
|
|
|
An
In this case, Of course, I'm describing this as a pattern that may turn up in your own code someday. In this specific case, you just set |
||
|
|
|
|
There's a nice example of It's something like this:
This allows you to write the exception handling code nearer to where the exception occurs. |
||
|
|
