Tags
python
Asked 2 years ago
4 Aug 2021
Views 216
Oma

Oma posted

What is the use of CPython ?

What is the use of CPython ?
denyy

denyy
answered Aug 5 '21 00:00

CPython is the compiler of Python, CPython is written C languages
CPython compiles any Python code to bytecode, and stored to file with extension ".pyc" , which is easy to run and re-run is fast

so CPython is used to compile Python code

Post Answer