RPRushabh Patilinrushabhpatil.hashnode.dev·Feb 16, 2024 · 5 min readInner Workings of Python, Part-IIIntroduction 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...00
RPRushabh Patilinrushabhpatil.hashnode.dev·Feb 6, 2024 · 3 min readThe inner working of pythonHaving recently tuned into a video by Hitesh Sir, I'm set to distill the essence of his insights in this article. Brace yourself for a condensed version of the crucial takeaways from the video. The only prerequisite for diving into this summary is th...00