How Python Integers Work

In the previous parts of this series we studied the core of the CPython interpreter and saw how the most fundamental aspects of Python are… Read more

Similar

Explaining Packaging in Python

If you’ve done much Python development you’re probably familiar with importing dependencies using pip, or even easy_install, if you’ve been at this for awhile. Whether you were aware of it or not… (more…)

Read more »

Switch Case in Python

What is a switch? The switch is a statement that evaluates the accuracy or similarity of the value of a certain input. But isn’t that the same thing that the if statement does? Let’s see this statement starting with bash scripting lang... (more…)

Read more »

Zen of Python

The Zen of Python is a collection of 19 "guiding principles" for writing computer programs that influence the design of the Python programming language.[1] Software engineer Tim Peters wrote this set of principles and posted it on the Python mailing list ... (more…)

Read more »