Compiled vs. Interpreted Languages

A compiled language is one where the program, once compiled, is expressed in the instructions of the target machine. For example, an addition “+” operation in your source code could be translated directly to the “ADD” instruction in machine code. An interpreted language is one where the instructions are not directly executed by the target … Read more

Interpreter not working

Fix your indentation and make sure your program flows through if statements correctly. Even first 2 lines should throw error now: def main(): cmd = (raw_input(‘#>>’)) The correct notation is: def main(): cmd = (raw_input(‘#>>’))