Python
  Home arrow Python arrow Page 6 - Python 101 (part 8): An Exceptionally ...
Dev Shed Forums 
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Forums Sitemap 
IBM® developerWorks 
Sun Developer Network 
Dedicated Servers 
E-Commerce Hosting 
Linux Web Hosting 
Managed Hosting 
Small Business Hosting 
Actuate Whitepapers 
VeriSign Whitepapers 
VPS Hosting 
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
PYTHON

Python 101 (part 8): An Exceptionally Clever Snake
By: Vikram Vaswani, (c) Melonfire
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 8
    2001-08-23

    Table of Contents:
  • Python 101 (part 8): An Exceptionally Clever Snake
  • Anatomy Of An Exception
  • Trying Harder
  • Different Strokes
  • Passing The Buck
  • Bad Boys
  • Raising The Bar
  • Strong Pythons (And The Exceptions That Love Them)
  • The End Of The Affair

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT

    Stay one step ahead of the competition. Evaluate and give feedback on some of the hottest web development tools on the market today. Make your opinion heard! Click Here

    Python 101 (part 8): An Exceptionally Clever Snake - Bad Boys


    (Page 6 of 9 )

    Most of what you've just learned also applies to Python's otherexception-handlng construct, the "try-finally" statement. The "try-finally"statement block differs from "try-except-else" in that it merely detectserrors; it does not provide for a mechanism to resolve them. It istypically used to ensure that certain statements are always executed whenan error (regardless of type) is encountered.

    The "try-finally" statement block looks like this:

    try: execute this block finally: if exceptions generated, execute this block
    If an exception is encountered when running the code within the "try"block, Python will stop execution at that point; jump to the "finally"block; execute the statements within it; and then pass the exceptionupwards, to the parent "try" block, if one exists, or to the defaulthandler, which terminates the program and displays a stack trace.

    Here's an example:

    #!/usr/bin/python

    dessert = ('apple pie', 'chocolate fudge cake', 'icecream')

    try: # generate error by accessing index out of range print dessert[10] finally: print "Something bad happened"
    When this program runs, an IndexError exception will be generated and the"finally" block will execute, printing an error message. Control will thenflow to the parent exception handler, which is the Python interpreter inthis case; the interpreter will terminate the program and print a stacktrace.

    $ dessert.py Something bad happened Traceback (innermost last): File "dessert.py", line 7, in ? print dessert[10] IndexError: tuple index out of range
    Since "try-finally" blocks simply detect errors, passing the resolutionbuck upwards to the parent "try" block, it's possible to nest them within"try-except-else" blocks. Take a look:

    #!/usr/bin/python

    try: dessert = ('apple pie', 'chocolate fudge cake', 'icecream')

    try: # generate error by accessing index out of range print dessert[10] finally: print "Something bad happened"

    except IndexError: print "You attempted to access a non-existent element. Bad boy!" except NameError: print "You attempted to access a non-existent object. What are you thinking?"
    Here's what'll happen when you run it:

    Something bad happened You attempted to access a non-existent element. Bad boy!

    More Python Articles
    More By Vikram Vaswani, (c) Melonfire


     

       

    PYTHON ARTICLES

    - SSH with Twisted
    - Mobile Programming in Python using PyS60: UI...
    - Python: Count on It
    - Python Strings: Spinning Yarns
    - Python: More Fun with Strings
    - Python: Stringing You Along
    - Python Operators
    - Bluetooth Programming in Python: Network Pro...
    - Python Sets
    - Python Conditionals, Lists, Dictionaries, an...
    - Python: Input and Variables
    - Introduction to Python Programming
    - Mobile Programming in Python using PyS60: Ge...
    - Bluetooth Programming using Python
    - Finishing the PyMailGUI Client: User Help To...





    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway