for-in loop on range
❮ for-in loop on list Iterable, iterator ❯
examples/loops/for_range.py
for ix in range(3, 7): print(ix)
3 4 5 6