The Zen of Python Illustrated

Hello, folks! I present you the new illustrated edition of The Zen of Python, an original creation by Tim Peters and a well-known feature of the Python language! As you may know, this was published before in the post Programming Comics 3, but that was a p… Read more

Similar

Python Coverage could be Fast

Ned Batchelder’s coverage.py is a foundation of the Python testing ecosystem. It is solid, well maintained, and does its job extremely well. I think literally every Python project that cares about testing should be using it. (more…)

Read more »

How to Use the Python Map Function

We can use the built-in function map() to apply a function to each item in an iterable (like a list or dictionary) and return a new iterator for retrieving the results. In this tutorial, we'll review three different ways of working with map(): with a... (more…)

Read more »