%% Last Updated: - [[2021-02-09]] - [[2021-01-26]] %% ## Generate numbers in sequence `range()` creates integers up to the parameter passed ```python x = range(5) for n in x: print(n) ``` will yield ```python 0 1 2 3 4 ```