1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-01 05:21:43 +02:00

Add content to exceptions node in Python (#6329)

* Update exceptions@fNTb9y3zs1HPYclAmu_Wv.md

* Update src/data/roadmaps/python/content/exceptions@fNTb9y3zs1HPYclAmu_Wv.md

---------

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
This commit is contained in:
Zehra
2024-08-02 07:28:21 -07:00
committed by GitHub
parent 30957922b1
commit 90df0a3a4d

View File

@@ -1 +1,6 @@
# Exceptions
# Exceptions
Python exceptions are events that occur during the execution of a program and disrupt the normal flow of the program's instructions. When an exception is raised, it indicates that an error has occurred. Python provides a way to handle these exceptions using try-except blocks, allowing developers to manage errors gracefully and ensure the program can continue or exit smoothly.
- [@official@Exceptions Documentation](https://docs.python.org/3/tutorial/errors.html#exceptions)
- [@video@Exception Handling in Python](https://www.youtube.com/watch?v=V_NXT2-QIlE)