Home > other >  The python interpreter, the compiler and the question of IDE
The python interpreter, the compiler and the question of IDE

Time:09-29

Just started to learn python, there are a few problems very confused
1, want to know I downloaded from the website down python3.7 what the interpreter?
2, whether or not an IDE contains the interpreter?
3, python IDE and the meaning of the C language in the sense of IDE have what different, such as python is the interpreter of this kind of language use, and the C compiler, this will be reflected on the IDE? I looked up some information, or may not be the solution, if you can, don't know that I can here to explain the relationship between them? I wish you all a happy Lantern Festival! Thanks for your help!

CodePudding user response:

Python3.7, an installation package, installed the interpreter is

IDE, inheritance, development environment, including the code editor, compiler and debugger and graphical user interface tool, so it does not seem to simply a pycharm IDE, because there is no interpreter, itself but is generally called so, also do not need to tangle the

Python is interpreted language, and C is a compiled language, the former through the interpreter into a C (of course, also may be other, but official website to download is interpreted as C), then compile interact with the computer, and C is directly by the compiler, the compiler to convert C program into assembly language, already, can be to identify and respond to computer

CodePudding user response:

1/f, reference and 蘤 old crepe response:
python3.7, an installation package, installed the interpreter is

IDE, inheritance, development environment, including the code editor, compiler and debugger and graphical user interface tool, so it does not seem to simply a pycharm IDE, because there is no interpreter, itself but is generally called so, also do not need to tangle the

Python is interpreted language, and C is a compiled language, the former through the interpreter into a C (of course, also may be other, but official website to download is interpreted as C), then compile interact with the computer, and C is directly by the compiler, the compiler to convert C program into assembly language, already, can be a computer to identify and respond to
thank you very much, I understand!
  • Related