There is a strange phenomenon in the Python world. People train neural networks, automate infrastructure, write complex tools and maintain applications for years while still having very little understanding of Python virtual environments. I’m not entirely sure why this happens. Maybe it’s because Python has such a low barrier to…
virtual environment
5 Python good practices which make life easier
Welcome to the next pikoTutorial! Print exceptions traceback after catching them Consider the following example code that raises an exception: When we run it, we see the following output: The traceback provides detailed information, including where the error occurred, the exception type, and the error message. However, the downside is…