Python 3’s F-Strings: An Improved String Formatting Syntax

As of Python 3.6, f-strings are a great new way to format strings. Not only are they more readable, more concise, and less prone to error than other ways of formatting, but they are also faster! By the end of this article, you will learn how and why to st… Read more

Similar

The Monster Group in Python

The mmgroup package is a python implementation of Conway’s construction [Con85] of the monster group \(\mathbb{M}\). In mathematics the monster group \(\mathbb{M}\) is the largest sporadic finite simple group. The group \(\mathbb{M}\) has order... (more…)

Read more »

Python Package Managers

Package managers - the most popular being Pip - are an integral part of the Python ecosystem. This article provides a broad summary of the history of Python package managers.. (more…)

Read more »