mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-25 06:18:32 +07:00
9 lines
170 B
Python
9 lines
170 B
Python
d = dict()
|
|
try:
|
|
v = d['key']
|
|
except KeyError:
|
|
print 'element not found'
|
|
else:
|
|
print 'element value {0}'.format(v)
|
|
finally:
|
|
print 'excuting finally clause' |