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

Moved misplaced articles from Typecasting to Exceptions (#6814)

Signed-off-by: Raul Galvez <raul.galvez@duke.edu>
This commit is contained in:
Raul Galvez
2024-08-26 16:24:56 -04:00
committed by GitHub
parent be7ea71390
commit e1a6dc3b40
2 changed files with 4 additions and 4 deletions

View File

@@ -3,4 +3,8 @@
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)
- [@article@Python Exceptions: An Introduction](https://realpython.com/python-exceptions/)
- [@article@Errors and Exceptions](https://docs.python.org/3/tutorial/errors.html)
- [@article@Python Exception Handling](https://www.programiz.com/python-programming/exception-handling)
- [@article@Python Try Except](https://www.w3schools.com/python/python_try_except.asp)
- [@video@Exception Handling in Python](https://www.youtube.com/watch?v=V_NXT2-QIlE)

View File

@@ -5,7 +5,3 @@ The process of converting the value of one data type (integer, string, float, et
Visit the following resources to learn more:
- [@article@Type Conversion and Casting](https://www.programiz.com/python-programming/type-conversion-and-casting)
- [@article@Python Exceptions: An Introduction](https://realpython.com/python-exceptions/)
- [@article@Errors and Exceptions](https://docs.python.org/3/tutorial/errors.html)
- [@article@Python Exception Handling](https://www.programiz.com/python-programming/exception-handling)
- [@article@Python Try Except](https://www.w3schools.com/python/python_try_except.asp)