(An Unofficial) Python Reference Wiki

"clearly marked experimental"

The finally clause

The finally clause is part of the try statement.

Syntax (simplified):

try:
    suite
finally:
    suite

For details, and a complete syntax description, see try. For a way to encapsulate try-finally behaviour, see with.