Inner Workings of Python, Part-II
Feb 16, 2024 · 5 min read · Introduction This is the second part of a blog series where I explain the inner workings of Python. To get started, let's look at an example. This article is inspired by x = ["fruit"] y = ["fruit"] z = x x is z # True x is y # False x == y # True...
Join discussion