Result Size: 625 x 571
demo_ref_range2.py:
x
 
x = range(3, 6)
for n in x:
  print(n)
C:\Users\My Name>python demo_range2.py
3
4
5