Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
codeInsight
/
controlflow
/
tryexceptelsefinally.py
blob: aff0bf097dcc71c1474e248c0f414910a675bd4f [
file
] [
log
] [
blame
]
d
=
dict
()
try
:
v
=
d
[
'key'
]
except
KeyError
:
print
'element not found'
else
:
print
'element value {0}'
.
format
(
v
)
finally
:
print
'excuting finally clause'