>A Byte of Python

Try..Finally

What if you wanted some statements to execute after the try block whether or not an exception was raised? This is done using the finally block. Note that if you are using a finally block, you cannot have any except clauses for the same try block.