大部分的异常都继承自Exception这个类(而这个类有继承自BaseException这个类) 常见的异常 ValueError TypeError IndexError 抛出一个异常 下面这个类的作用是:添加偶数到列表中去. # 添加偶数到列表中:这个类继承了内置的list对象 class EvenOnly(list): def append(self, integer): # If the integer is not a int type, raise a TypeError if no…