In this Episode #13 of "The DDSRY Show". Deepak Yadav is Explaining about How Python Works ? | as I told you in first episode that python is an interpreted language.
so let understand how python works
first, we write instructions in English based language.
as I told you that python is an interpreted language so there is no need of compiling them.
Python programs run the source code directly
the source code is converted into intermediate bytecode and then into the native computer language.
then the code is executed.