List Comprehension

Learn how to build lists using list comprehensions.

In the final lesson on lists, we take a look at another powerful syntactic element to build complex lists: the list comprehension syntax.

List comprehensions by example

List comprehensions are a concept inspired by set definitions in mathematical notation. In mathematics, the definition

{x2  xN,x is even}\{ x^2 \ |\ x \in \mathbb{N}, x \text{ is even} \}

defines the set of ...