Python Exception to string

In this Python Tutorial let us learn about the 3 different pieces of information that you can extract and use from the Exceptions caught on your except clauses, and see the best ways to use each of these pieces in our Python programs. Let us start by learning what the 3 pieces of information are. … Read more

Python catch multiple exceptions

To improve our craftsmanship as a Python programmer, we need to learn about handling exceptions effectively. One of the tricks to improving our efficiency while handle exceptions is to catch several exceptions using a single except clause. Python provides us with several ways to catch multiple Exceptions using a single except clause. In this article … Read more

Exceptions in Python: Everything You Need To Know!

In this article let us learn about “Exceptions” in Python and the various ways of handling them. The craftsmanship of a programmer can be measured by the degree of robustness of the code they write. To be an excellent python craftsman, we need to learn everything we can about Exceptions. Let us start by understanding … Read more