Hello...
I was wondering if it is possible to perform a certain number of operations without storing the loop iteration number anywhere.
For instance, let's say I want to print two "hello" messages on the console. Right now I know I can do:
for i in range(2):
print "hello"
but then the "i" variable is going to take the values 0 and 1 (which I don't really need). Is there a way to achieve the same thing without storing that anywhere?
I know it's not big deal... I'm just curious :-)
Thank you in advance