culTest

    One of the 50 questions in this topic

    How much do you know about Python?

    What is CPython?

    Answers

    Python with C extensions
    The Python reference implementation written in CCorrect
    A compiler that converts Python to C
    A version of Python optimized for scientific calculations

    CPython is the reference and most common implementation of the Python language, written in C. When people talk about 'Python' they usually mean CPython. It includes both the interpreter and the execution environment. Other implementations include PyPy (faster for certain cases), Jython (in Java), IronPython (in .NET), and MicroPython (for microcontrollers). CPython compiles Python code to bytecode before interpreting it.