When you just want to do a try catch without handling the exception, how do you do it in Python?
try :
shutil.rmtree ( path )
except :
pass
|
or
The difference is, that the first one will also catch
|
|||||||||||||||
|
It depends on what you mean by "handling." If you mean to catch it without taking any action, the code you posted will work. If you mean that you want to take action on an exception without stopping the exception from going up the stack, then you want something like this:
|
|||||
|
|
It's generally considered best-practice to only catch the errors you are interested in, in the case of
If you want to silently ignore that error, you would do..
Why? Say you (somehow) accidently pass the function an integer instead of a string, like..
It will give the error "TypeError: coercing to Unicode: need string or buffer, int found" - you probably don't want to ignore that, which can be difficult to debug.. If you defiantly want to ignore all errors, catch It catches every exception, include the
..compared to the following, which correctly exits:
If you want to write ever better behaved code, the
You could also |
|||||||||||
|
|
For completeness:
...from the python tutorial. Also note that you can capture the exception like this:
|
||||
|
|
|
@When you just want to do a try catch without handling the exception, how do you do it in Python? This will help you to print what exception is:( i.e. try catch without handling the exception and print the exception.)
import sys
....
try:
doSomething()
except:
print "Unexpected error:", sys.exc_info()[0]
...
reg, Tilokchan |
|||
|
FYI the else clause can go after all exceptions and will only be run if the code in the try doesn't cause an exception. |
|||
|
|
|
in python, we handle exceptions similar to other language but the difference is some syntex difference, for example-
|
||||
|
|
|
Here are some more examples: |
|||
|
|