The article contrasts Python to Perl, saying Perl is purely interpreted while Python has compilation. This is factually incorrect.
Perl is transformed into an AST. Then that is decorated into an opcode tree. The thing runs code nearly as fast as C in many instances, once the startup has completed and the code is actually running.