Tags
python
Asked 2 years ago
4 Aug 2021
Views 267
Esmeralda

Esmeralda posted

What is CPython vs Cython ?

What is CPython vs Cython ?
Cimb

Cimb
answered Aug 5 '21 00:00

CPython is a compiler and an interpreter, it is used to compile Python code to byte code.

in another hand, Cython has the same superset of the Python programming language, compiled to C or C++, it means is not really Python programming but Cython give the same experience as Python code for humans
Post Answer