Is there any difference between cpython and python

Question:

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?

Asked By: fear_matrix

||

Answers:

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.

Answered By: kennytm

CPython is Guido van Rossum‘s
reference version of the Python
computing language. It’s most often
called simply “Python”; speakers say
“CPython” generally to distinguish it
explicitly from other implementations.

Answered By: YOU
Categories: questions Tags:
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.