Python programming in Interactive mode! Flashcards
How are the instructions executed in Interactive mode?
In Interactive mode, the instructions are executed line by line, giving the output.
Where are the commands typed?
In this mode, the commands are typed next to the Python Command prompt(»>)
What is Interactive mode beneficial for?
Interactive mode is beneficial for testing codes where you type the commands one at a time, getting the result or error immediately.
What does the interpreter do when you type a command next to the Python Command prompt?
When you type a command next to the Python Command prompt and press the Enter key, the interpreter converts the command into machine language and after processing, it again converts it into human readable form(output).