is python interpreted to c++? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

is python interpreted to c++?

23rd Apr 2020, 4:11 PM
Faisal A Bukar
Faisal A Bukar - avatar
5 Answers
+ 1
That's what interpreters and compilers do. Python is interpretable C++ is at most compilable
24th Apr 2020, 3:59 PM
Eddie 🇦🇲
Eddie 🇦🇲 - avatar
+ 1
The difference between an interpreted and a compiled language lies in the result of the process of interpreting or compiling. An interpreter produces a result from a program, while a compiler produces a program written in assembly language.
24th Apr 2020, 4:00 PM
Eddie 🇦🇲
Eddie 🇦🇲 - avatar
+ 1
Yes, in a way: the official and mainly used python interpreter is wrote in C (CPython, to not confuse with Cython, a crossover of C and Python, wich is a compiled language used to generate CPython extension modules) https://en.m.wikipedia.org/wiki/CPython https://www.quora.com/What-is-Python-written-in https://en.m.wikipedia.org/wiki/Cython
25th Apr 2020, 6:14 AM
visph
visph - avatar
+ 1
Thank you so much
29th Apr 2020, 10:32 AM
Faisal A Bukar
Faisal A Bukar - avatar
0
Python and C++ are both high-level programming languages. They are readable for humans, but not for computers. As computers understand only numbers we need translators to tell computer how to perform a task.
24th Apr 2020, 3:56 PM
Eddie 🇦🇲
Eddie 🇦🇲 - avatar