+ 1

Undrestanding how python run codes

Is there any way or educational tool that able us find out how python run a code behind the curtain to undrestand the logic of python codes ?

25th Jan 2018, 7:43 AM
NIMA
NIMA - avatar
1 Answer
+ 2
Python code is interpreted, so there's not much sense in having a decompiler or something like that. You can, however, look at the CPython source code, to see what the interpreter actually does and how the python functionality is implemented in C. That won't help you with a specific python code though, it will only give you a general understanding of how the python interpreter works. The best way to understand python code is to look at the actual python code.
25th Jan 2018, 7:54 AM
SplittyDev
SplittyDev - avatar