Python is an interpreted language with a compiler

by BerislavLopacon 4/25/2025, 10:29 AMwith 1 comments

by timfion 4/25/2025, 12:59 PM

In general, I find that compilers, transpilers, etc. are all just "interpreters", which conceptually just boil down to a given input being "re-interpreted" into a new representation. Thus, what we commonly call interpreters re-interpret programs into results, compilers just re-interpret into an executable, transpilers into a different language, etc.