The Read-Eval-Print-Loop aka REPL
A feature of modern programming languages that allows you to work with them interactively through your shell. For example, running Python or Node.js in interactive mode by simply running them without a script. In the case of Python that would be python
or python3
depending on your OS.