⇤ ← Revision 1 as of 2003-11-17 20:12:31
Size: 522
Comment: A little something to get the ball rolling.
|
Size: 805
Comment: added "except Exception, e:" example.
|
Deletions are marked like this. | Additions are marked like this. |
Line 12: | Line 12: |
}}} If you wanted to examine the exception from code, you could have: {{{ #!python (x,y) = (5,0) try: z = x/y except Exception, e: z = e # representation: "<exceptions.ZeroDivisionError instance at 0x817426c>" print z # output: "integer division or modulo by zero" |
Handling Exceptions
The simplest way to handle exceptions is with a "try-except" block:
If you wanted to examine the exception from code, you could have:
To Write About...
Give example of IOError, and interpreting the IOError code.
Give example of multiple excepts. Handling multiple excepts in one line.
Show how to use "else" and "finally".
Show how to continue with a "raise".
See Also:
WritingExceptionClasses, TracebackModule, CoupleLeapingWithLooking