CPython

Python RuntimePython N/ABeginner

The reference Python implementation written in C; what you get from python.org

Quick Info

Documentation
Official Docs
Python Version
N/A
Dependencies
C compiler (for building from source)
Install
https://www.python.org/downloads/

Learn by Difficulty

Quick Example

python
# CPython
# The reference Python implementation written in C; what you get from python.org
#
# CPython is a Python runtime/implementation.
# Key features and usage information:
print("CPython")
print("The reference Python implementation written in C; what you get from python.org")
print("Python Version: N/A")

CPython is the reference python implementation written in c; what you get from python.org. It provides an alternative way to run Python code.

Try in Playground

Tags

runtimereferencecofficialinterpreter

Related Items