0
is python interpreted to c++?
5 Answers
+ 1
That's what interpreters and compilers do.
Python is interpretable
C++ is at most compilable
+ 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.
+ 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
+ 1
Thank you so much
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.