Exception handling in Python, explain please
Answer (1)
Exception handling refers to handle the exceptions that suddenly comes in betwwen the code of the program.
In Python, we have TRY, EXCEPT and FINALLY.
We put our block of code in the Try block, Except block takes the exceptions which are already defined in that block.
And at last, finally executes no matter what.
2 likes
Comments (0)
Related Questions
Please explain campus placement?
81 Views




