How string and string works in Python

GitHub Gist: instantly share code, notes, and snippets. Read more

Similar

The Incredible Growth of Python

We recently explored how wealthy countries (those defined as high-income by the World Bank) tend to visit a different set of technologies than the rest of the world. Among the largest differences we saw was in the programming language Python. When we focu... (more…)

Read more »

Constant Folding in Python

Every programming language aims to be performant and Python is no exception. In this essay, we dive deep into Python internals and find out how Python makes its interpreter performant using a technique called Constant Folding. (more…)

Read more »

Decorators in Python

In Python, everything is object. Functions in Python are first-class objects which means that they can be stored in a variable, added in the lists, passed as arguments to another function etc. With… (more…)

Read more »