From 90df0a3a4d91446ff225c414a373f0e4c8f31041 Mon Sep 17 00:00:00 2001 From: Zehra <70450368+zehranrgi@users.noreply.github.com> Date: Fri, 2 Aug 2024 07:28:21 -0700 Subject: [PATCH] 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 --- .../python/content/exceptions@fNTb9y3zs1HPYclAmu_Wv.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/python/content/exceptions@fNTb9y3zs1HPYclAmu_Wv.md b/src/data/roadmaps/python/content/exceptions@fNTb9y3zs1HPYclAmu_Wv.md index 9617c0da2..4fecfc4e8 100644 --- a/src/data/roadmaps/python/content/exceptions@fNTb9y3zs1HPYclAmu_Wv.md +++ b/src/data/roadmaps/python/content/exceptions@fNTb9y3zs1HPYclAmu_Wv.md @@ -1 +1,6 @@ -# Exceptions \ No newline at end of file +# 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)