Back to Lesson
else & finally Blocks
Write a full try/except/else/finally sequence.
Instructions
- In ablock, print
try."Trying" - In theblock, print
except Exception:."Failed" - In theblock, print
else:."Success" - In theblock, print
finally:."Done"
main.py
main.py
Ctrl + Enter