Reference

try-except

Python provides a construct called the try-except construct that allows a programmer to capture a runtime error and give the programmer the option to handle that error.

try: #code except (insert_error_name): #code to run when faced this error

Try and except blocks allows for multiple different except blocks to handle a variety of errors. Exceptions can also be raised intentionally to test try and except functionality.

0

0

Updated 2021-06-06

Tags

Python Programming Language

Data Science