10 lines
194 B
Python
10 lines
194 B
Python
try:
|
|
try:
|
|
raise ValueError()
|
|
else:
|
|
print("oh no (else should not run)")
|
|
finally:
|
|
print('finally')
|
|
except ValueError:
|
|
print("value error caught in outer")
|