473,800 Members | 2,731 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

What is "finally:" for?

Hi all!
When and where I should use try-except-finally statement? What is the
difference between:
--------
try:
A...
except:
B....
finally:
C...
--------

and
-------
try:
A...
except:
B....
C...
Sep 16 '08 #1
5 1742
On 16 Sep., 13:25, "Max Ivanov" <ivanov.ma...@g mail.comwrote:
Hi all!
When and where I should use try-except-finally statement? What is the
difference between:
--------
try:
* A...
except:
* B....
finally:
* C...
--------
It does A if no exception or B if an exception occurs. THEN it does
always C.
>
and
-------
try:
* A...
except:
* B....
C...
If an exception occurs, C is never reaching.

Andreas
Sep 16 '08 #2
On 16 Sep., 13:25, "Max Ivanov" <ivanov.ma...@g mail.comwrote:
Hi all!
When and where I should use try-except-finally statement? What is the
difference between:
--------
try:
* A...
except:
* B....
finally:
* C...
--------

and
-------
try:
* A...
except:
* B....
C...
Look at: http://docs.python.org/ref/try.html and http://bytes.com/forum/thread24648.html

The python doc says:
"Changed in version 2.5: In previous versions of Python,
try...except... finally did not work. try...except had to be nested in
try...finally."

Andreas
Sep 16 '08 #3
On Sep 16, 6:25*am, "Max Ivanov" <ivanov.ma...@g mail.comwrote:
Hi all!
When and where I should use try-except-finally statement? What is the
difference between:
--------
try:
* A...
except:
* B....
finally:
* C...
--------

and
-------
try:
* A...
except:
* B....
C...
If B raises or rethrows another exception, finally: ensures that C
still gets called. In the second form that you give, C would not get
called. Here is one way to use try-except-finally:

try:
open database
do database stuff
except DatabaseExcepti on, de:
log exception
throw
finally:
close database

Or

try:
transaction = new database transaction
do database stuff
do more database stuff
commit transaction
transaction = None
except DatabaseExcepti on, de:
log exception
throw
finally:
if transaction:
rollback transaction
If you are allocating a resource, lock, file, database, etc., then
exception-safe coding style is to get the resource in a try: and
release the resource in finally:

-- Paul
Sep 16 '08 #4
Ant
On Sep 16, 12:30*pm, Andreas Kaiser <kaiser.voc...@ gmail.comwrote:
On 16 Sep., 13:25, "Max Ivanov" <ivanov.ma...@g mail.comwrote:H i all!
When and where I should use try-except-finally statement? What is the
difference between:
--------
try:
* A...
except:
* B....
finally:
* C...
--------

It does A if no exception or B if an exception occurs. THEN it does
always C.
Rather it runs the code in A. If an exception is thrown in A, B is
then run. C is run regardless.
-------
try:
* A...
except:
* B....
C...

If an exception occurs, C is never reaching.
Whether or not C runs will depend on what code is present in B (e.g.
it could return, or throw a different exception).

Typically you will use a finally clause if there is some cleanup that
should occur regardless of whether an exception is thrown. For
example:

def getNumbers(file name):
numbers = []

fh = open("test.txt" ) # Should contain lines of numbers
try:
for line in fh:
if line.strip():
numbers.append( int(line.strip( )))
except ValueError, e:
return None
finally:
fh.close()

return numbers
This ensures that open files are closed for example.

--
Ant.
Sep 16 '08 #5
Paul McGuire wrote:
....
try:
open database
do database stuff
except DatabaseExcepti on, de:
log exception
throw
finally:
close database

Or

try:
transaction = new database transaction
do database stuff
do more database stuff
commit transaction
transaction = None
except DatabaseExcepti on, de:
log exception
throw
finally:
if transaction:
rollback transaction
Generally it is a good idea to try the advice you are about to offer.

"raise" is the Python way to do the Lisp/Scheme "throw" which will
likely produce another error, but not the one you want.

--Scott David Daniels
Sc***********@A cm.Org
Sep 17 '08 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

77
5391
by: Jon Skeet [C# MVP] | last post by:
Please excuse the cross-post - I'm pretty sure I've had interest in the article on all the groups this is posted to. I've finally managed to finish my article on multi-threading - at least for the moment. I'd be *very* grateful if people with any interest in multi-threading would read it (even just bits of it - it's somewhat long to go through the whole thing!) to check for accuracy, effectiveness of examples, etc. Feel free to mail...
10
6101
by: Joe Thompson | last post by:
Hi, This is probably a simple question but I'm curious. What is the purpose of the "finally" statement? There must be a good reason to use it that I'm just not getting... How is this: method1 {
0
9551
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10504
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10251
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10033
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9085
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7576
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5469
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4149
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2945
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.