Is there any difference between cpython and python

python

Solution

Python is a language.

CPython is the default byte-code interpreter of Python, which is written in C.

There is also other implementation of Python such as IronPython (for .NET), Jython (for Java), etc.

Problem

I want to know the difference between CPython and Python because I have heard Python is developed in C - then what is the use of CPython?

Original source

Related problems