demo_ref_range2.py:
x = range(3, 6) for n in x: print(n)
➜ begtut>python demo_range2.py
3
4
5