No Image

How to Catch Multiple Exceptions in Python

20 9 月, 2023 Real Python 0

In this how-to tutorial, you’ll learn different ways of catching multiple Python exceptions. You’ll review the standard way of using a tuple in the except clause, but also expand your knowledge by exploring some other techniques, such as suppressing exceptions and using exception groups.

No Image

Learning About Code Metrics in Python with Radon

20 9 月, 2023 Mike 0

There are many different tools that you can install to help you be a better Python programmer. For example, you might install pytest so that you can do unit tests of your code. Or you might install Ruff, a super fast Python linter. The focus of this article is on another tool called Radon that …

Learning About Code Metrics in Python with Radon Read More »

The post Learning About Code Metrics in Python with Radon appeared first on Mouse Vs Python.