Python 的默认实现在 CPython 中意味着什么?

What does Default Implementation of Python means in CPython?

我已经开始学习 python 并且有一个 python 风格的概念,其中第一个是 CPython 并且它的定义是它是 [=15= 的默认实现].现在我不明白它想说什么,是 - 完整的 python 是用 c 语言实现的,还是只有 python 的某些东西是用 c 语言实现的。请弄清楚其中的混淆。

CPython 是语言 Python 的特定实现的名称,默认情况下它们意味着这是您最有可能想要使用的语言。其他实现包括 PyPy、Stackless 和 MicroPython.

one group of developers which work on the Python language. The "Python language" could just be an abstract specification of how the language is supposed to behave, with no actual runnable project. But that's not what those Python developers do; they produce the "Python language" both in the abstract as a series of suggestions and documentation, but they also implement that in the CPython种语言。 CPython 是 Python 语言的一个实现,用 C 语言编写。“Python 语言”在摘要(规范、文档)中及其实际实现中以 CPython携手并进

其他 组开发人员实现了Python 语言的替代版本;它们的行为(大部分)相同,因为它们可以执行符合抽象语言定义的 Python 代码,但 Python 实现不是前面提到的 CPython,而是其他东西.