Python Tutorial for Beginners 37 Try Except Else Finally Python Exception handling

Published: 01 January 1970
on channel: Expert Programmer
6
0

In this Python Tutorial for Beginners video I am going to show How to use Try Except Else Finally in Exception handling in Python.
else: statements executed if no exception
finally:clean-up statements always executed
A finally clause is always executed before leaving the try statement. A finally statements is guaranteed to be executed before leaving the try statement, whether an exception has occurred or not.
What are these exceptions? An exception is an event, which happens while the execution of a program, that disrupts the normal flow of the program. When some error error occurs an exception is raised. Python Exceptions are run-time errors. Exceptions are used to deal with extraordinary errors. Normally if we do not use Exception handling the execution of program stops as soon as exception is thrown.By default, the interpreter handles exceptions by stopping the program and printing an error message.


List of exception in Python
CLASSES object BaseException Exception ArithmeticError FloatingPointError OverflowError ZeroDivisionError AssertionError AttributeError BufferError EOFError ImportError LookupError IndexError KeyError MemoryError NameError UnboundLocalError OSError BlockingIOError ChildProcessError ConnectionError BrokenPipeError ConnectionAbortedError ConnectionRefusedError ConnectionResetError FileExistsError FileNotFoundError InterruptedError IsADirectoryError NotADirectoryError PermissionError ProcessLookupError TimeoutError ReferenceError RuntimeError NotImplementedError RecursionError StopAsyncIteration StopIteration SyntaxError IndentationError TabError SystemError TypeError ValueError UnicodeError UnicodeDecodeError UnicodeEncodeError UnicodeTranslateError Warning BytesWarning DeprecationWarning FutureWarning ImportWarning PendingDeprecationWarning ResourceWarning RuntimeWarning SyntaxWarning UnicodeWarning UserWarning GeneratorExit KeyboardInterrupt
SystemExit


Watch video Python Tutorial for Beginners 37 Try Except Else Finally Python Exception handling online, duration hours minute second in high quality that is uploaded to the channel Expert Programmer 01 January 1970. Share the link to the video on social media so that your subscribers and friends will also watch this video. This video clip has been viewed 6 times and liked it 0 visitors.