Is is possible to do this;
for i in range(some_number):
#do something
without the i? If you just want to do something x amount of times and don't need the iterator.
|
4
|
|||||||
|
|
|
Off the top of my head, no. I think the best you could do is something like this:
But I think you can just live with the extra Here is the option to use the
Note that
For this reason, I would not use it in this manner. I am unaware of any idiom as mentioned by Ryan. It can mess up your interpreter.
And according to python grammar, it is an acceptable variable name:
|
||||||||||||||
|
|
|
OUTPUT: |
|||
|
|
|
|
Here's a random idea that utilizes (abuses?) the data model.
I wonder if there is something like this in the standard libraries? |
|||
|
|
|
What everyone suggesting you to use _ isn't saying is that _ is frequently used as a shortcut to one of the gettext functions, so if you want your software to be available in more than one language then you're best off avoiding using it for other purposes.
|
|||
|
|
|
You may be looking for
this is THE fastest way to iterate |
||||||||||||||
|
|
|
May be answer would depend on what problem you have with using iterator? may be use
or
but frankly i see no point in using such approaches |
||
|
|
|
|
The general idiom for assigning to a value that isn't used is to name it
|
|||
|
|