Analyzing Python Code with Python

One of the special things about software engineering as a profession is the possibility of ars-poetic work: part of our work is building tools that target our own work; perhaps a few surgeons around the globe can design and meld their own scalpel, but for… Read more

Similar

Type Hints in Python

In the low-level programming languages like Java, C, C++, and C#, variables are strictly typed - which means you have to indicate the variable type when creating a variable. (more…)

Read more »

String Interning 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 String Interning. (more…)

Read more »