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.
|
|
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:
|
|||||||||||||||
|
|
You may be looking for
this is THE fastest way to iterate |
|||||||||||||||||||
|
|
The general idiom for assigning to a value that isn't used is to name it
|
||||
|
|
|
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.
|
||||
|
|
|
Here's a random idea that utilizes (abuses?) the data model.
I wonder if there is something like this in the standard libraries? |
|||||||||
|
|
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 |
|||
|
|
|
You can use _11 (or any number or another invalid identifier) to prevent name-colision with gettext. Any time you use underscore + invalid identifier you get a dummy name that can be used in for loop. |
||||
|
|
|
I generally agree with solutions given above. Namely with:
If one is to define an object as in #3 I would recommend implementing protocol for with keyword or apply contextlib. Further I propose yet another solution. It is a 3 liner and is not of supreme elegance, but it uses itertools package and thus might be of an interest.
In these example 2 is the number of times to iterate the loop. chain is wrapping two repeat iterators, the first being limited but the second is infinite. Remember that these are true iterator objects, hence they do not require infinite memory. Obviously this is much slower then solution #1. Unless written as a part of a function it might require a clean up for times variable. |
||||
|
|
|
Instead of an unneeded counter, now you have an unneeded list. Best solution is to use a variable that starts with "_", that tells syntax checkers that you are aware you are not using the variable.
|
||||
|
|
|
||||
|
|
|
What about:
|
|||||
|