Does Python do try: except: finally: ?
Joseph Wilhelm
jwilhelm at outsourcefinancial.com
Wed Mar 19 16:14:11 EST 2003
More information about the Python-list mailing list
Wed Mar 19 16:14:11 EST 2003
- Previous message (by thread): Does Python do try: except: finally: ?
- Next message (by thread): Does Python do try: except: finally: ?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Wed, 2003-03-19 at 13:51, Jerry Seutter wrote: > Does Python do a block like: > > try: > do_something() > except: > do_something_else() > finally: > do_cleanup() > >>> try: ... print "Foo" ... except: ... print "Oof" ... else: ... print "Bar" ... Foo Bar >>> That what you need? --Joseph Wilhelm
- Previous message (by thread): Does Python do try: except: finally: ?
- Next message (by thread): Does Python do try: except: finally: ?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list