Errors and Exceptions in Python
Preface Errors are problems in a program so that the program stops executing. Exceptions are raised, on the other hand, when some internal event occurs that alter the normal process of the program. Two types of errors occur in python. Syntax error Logical error (Exceptions) 1. Syntax error When the proper syntax of the language […]
Continue Reading