Inner Workings of Python, Part-II
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...
rushabhpatil.hashnode.dev5 min read