for number in range(1,101):
print number
Can someone please explain to me why the above code prints 1-100? I understand that the range function excludes the last number in the specified range, however, what is the 'number' part of the syntax?
I more used to C++ & Java where i'd write the code like:
for (i = 1; i<101; i++)
{return i;
i++;
}
So what exactly is 'number'? I'm sure i'm looking too far into this and there is a simple question.
i++because of thereturn. – detly Jul 13 '10 at 23:30