Learn to say popular alternative Python interpreter implementation names correctly.
0 / 5 completed
1 / 5
How is CPython (the default and most widely used implementation of Python, written in C) correctly pronounced?
CPython is pronounced 'SEE-PY-thon' — the letter 'C' plus 'Python' said the usual way. In a technical interview: "CPython ships with the reference C extension API that most third-party packages are still built against."
2 / 5
How is PyPy (Python implementation with a just-in-time compiler for faster execution) correctly pronounced?
PyPy is pronounced 'PY-py' — 'Py' said twice in a row, rhymes with 'pie pie'. In a technical interview: "PyPy's JIT compiler cut our number-crunching loop's runtime down to a fraction of what CPython took."
3 / 5
How is Jython (implementation of Python that runs on the Java Virtual Machine) correctly pronounced?
Jython is pronounced 'JY-thon' — the letter 'J' (for Java) plus 'ython' from Python. In a technical interview: "Jython let our Python script call straight into the existing Java class library without any bridge code."
4 / 5
How is IronPython (implementation of Python that runs on the .NET Common Language Runtime) correctly pronounced?
IronPython is pronounced 'EYE-urn-PY-thon' — 'iron' exactly like the everyday metal, plus 'Python'. In a technical interview: "IronPython gave our scripting layer direct access to every .NET assembly already loaded in the process."
5 / 5
How is GraalPy (high-performance Python implementation built on the GraalVM platform) correctly pronounced?
GraalPy is pronounced 'GRAHL-py' — 'Graal' rhymes with 'crawl', plus 'Py'. In a technical interview: "GraalPy let us embed Python code inside the same JVM process that ran our Java services."