demo_for_range.py:
for x in range(6): print(x)
➜ begtut>python demo_for_range.py
0
1
2
3
4
5