We all know that the Python interpreter changes our code into an intermediate form called bytecode. With the dis module, you can see what this bytecode looks like. In this article, @s_gruppetta explained what happens inside when we run a Python program.
https://www.thepythoncodingstack.com/p/python-disassembling-bytecode-dis-module
