Are there any Python compiler? Why? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Are there any Python compiler? Why?

I don't know why Python is high-level programming language. Is it because it doen't need compilers?😟

11th Aug 2017, 4:26 PM
Seng Thai
Seng Thai - avatar
2 Answers
+ 2
Python - a language that requires a lot from the machine, and a little from the user. Machine does not need machine code from Python code
11th Aug 2017, 5:02 PM
An0ther
An0ther - avatar
+ 2
Yes, there are compilers for Python like Nuitka that can compile Python code into binary. However it's not widely used. Moreover Python do some compilation of the code into pyc files. No, Python is a high-level language not because of this. Java and C++ are high-level too. High-level language has a lot of abstractions that make life of developer easier, like OOP abstractions, different data structures and so on.
11th Aug 2017, 6:50 PM
Roman
Roman - avatar