Expression

An expression is a combination of elements that produces a result.

Python Example

Detailed information on Python expressions can be found here: https://docs.python.org/3/reference/expressions.html

# Expressions are representations of values, which are different than statements.
[x for x in range(10)]
{x:x**2 for x in range(5)}