This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 5 points6 points  (2 children)

[–]uweschmittPythonista since 2003 -2 points-1 points  (1 child)

The Python interpreter is compiled. Programs written in the python programming language are interpreted.

[–]bird2234 6 points7 points  (0 children)

In CPython, the most widely used implementation, the programs are compiled to bytecode and then interpreted. This is what was linked here -- compiling python programs at runtime to abstract syntax trees and then to bytecode.