Common Exceptions

We'll look at some common exceptions in Python

We'll cover the following...

Here is a list of the most common built-in exceptions (definitions from the Python documentation):

  • Exception (this is what almost all the others are built off of)
  • AttributeError - Raised when an attribute reference or assignment fails.
  • IOError - Raised when an I/O operation (such as
...