Let’s talk about data types and variables. In Python, the concept of primitive and reference types is a bit blurry, because everything in Python is an object. A variable is treated more like a label pointing to a value, rather than a container that holds the value itself. In Python, those “primitive-like” types are actually…