Kingsway to Python: Exeptions
ex00.py - try: ... except: (division 1/0)
ex02.py - ZeroDivisionError exception
ex03.py - OverflowError exception
ex04.py - FloatingPointError exception
ex05.py - AssertionError exception raised when assert fails
ex06.py - IOError exception raised by write
ex07.py - IOError exception raised by file open operation
ex08.py - EOFError exception
ex09.py - MemoryError exception
ex10.py - IndexError exception - a sequence index is out of range
ex11.py - OSError exception
ex12.py - FileExistsError exception
ex14.py - raise statement for raising exceptions In development ...
ex16.py - try: ... except: ... else: ... In development ...
ex18.py - exception variable using In development ...
ex20.py - SystemError exception In development ...
ex21.py - ImportError exception
ex22.py - NameError exception
ex24.py - FileNotFoundError exception
ex26.py - TypeError exception In development ...
ex28.py - NotImplementedError exception In development ...
ex30.py - RuntimeError exception in development ...