Learning python eighth day - the exception

Exception

Common exception:

 

AssertionError Assertion failure
AttributeError Attempts to access an unknown object properties
IndexError Index out of sequence values
keyError Find a keyword that does not exist
NameError Try to access the variable does not exist
OSError The operating system exception
SyntaxError Grammatical errors
typeError 1 + '1' this
ZeroDivisionError Division by zero

Guess you like

Origin www.cnblogs.com/code-fun/p/11758111.html