It means it executes the code line by line . Python provides a Python Shell, which is used to execute a single Python command and display the result. It is also known as REPL (Read, Evaluate, Print, Loop), where it reads the command, evaluates the command, prints the result, and loop it back to read the command again.
Read moreWhat do you mean by REPL?
A Read-Eval-Print Loop, or REPL, is a computer environment where user inputs are read and evaluated, and then the results are returned to the user . REPLs provide an interactive environment to explore tools available in specific environments or programming languages.
Read more