📜  编译器和解释器的区别 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:25.301000             🧑  作者: Mango

代码示例3
Interpreter:- An interpreter converts one statment at a time into machine code 
and has the ability to analyze the code faster also interpreter keeps 
translating the program until the first errors is detected.
Compiler:- Compiler converts the whole code at once into the machine code and it
takes longer time to anaylize the code an compilers keep collecting the issues 
and show up them to the pogrammer at once.