DEV Community

Discussion on: Best Languages to Learn How to Code

Collapse
 
lpasqualis profile image
Lorenzo Pasqualis

CPython does transform the Python code into bytecode and runs it, but it is still an interpreted language. You do not explicitly compile a Python source file into bytecode. It happens transparently for you at runtime. Java is not involved in the process.