so evidently you write for loops in python int he following:
for i in range(1, 5):
print i
but what if I'm actually using i as a counting trick and I specifically wanna do something like:
for (int i = 100; i > 20; i--)
or
for (int i = 0; i < 20 ; i += 2)
do you seriously have to write this in the body of the loop rather than the signature....
xrangeinstead ofrangein for loops (and anywhere else you don't actually need the whole range as a list).range(), in practice you will find that you should very rarely use it when you writeforloops in Python.