REPL

Applies to: general, python

A REPL reads one command, evaluates it, prints the result, and loops. It is useful for quick experiments.

>>> 2 + 2
4

See also: debugging