This works:
for i in range(0, 3):
print "hi"
This doesn't work:
for range(0, 3):
print "hi"
but I don't need the 'i' for anything at all. Is there a way to write a 'for' statement without the 'i' or a different character which assumes the same role?
( Typically, it would be something like
for i in range(0, someReturnValue())
someFunction()
but the question is generalizable to my first examples.)