vote up 7 vote down star
3

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.

flag
1  
Why the downvote? It is a legitimate question. – James McMahon May 4 at 5:32
This is a good question! PyDev even flags the 'i' as a warning for 'unused variable'. The solution below removes this warning. – Ashwin Nov 16 at 10:26

7 Answers

vote up 7 vote down check

Off the top of my head, no.

I think the best you could do is something like this:

def loop(f,n):
    for i in xrange(n): f()

loop(lambda: <insert expression here>, 5)

But I think you can just live with the extra i variable.

Here is the option to use the _ variable, which in reality, is just another variable.

for _ in range(n):
    do_something()

Note that _ is assigned the last result that returned in an interactive python session:

>>> 1+2
3
>>> _
3

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.

>>> for _ in xrange(10): pass
...
>>> _
9
>>> 1+2
3
>>> _
9

And according to python grammar, it is an acceptable variable name:

identifier ::= (letter|"_") (letter | digit | "_")*

link|flag
"But I think you can just live with the extra "i"" Yeah it is just an academic point. – James McMahon May 4 at 5:16
@nemo, you can try doing for _ in range(n): if you don't want to use alphanumeric names. – Unknown May 4 at 5:19
Is _ a variable in that case? Or is that something else in Python? – James McMahon May 4 at 5:20
1  
It's a variable. – Nikhil Chelliah May 4 at 5:20
1  
@nemo Yes its just an acceptable variable name. In the interpreter, it is automatically assigned the last expression you made. – Unknown May 4 at 5:24
show 6 more comments
vote up 0 vote down
t=0    
for _ in range (0, 10):
  print t
  t = t+1

OUTPUT:
0 1 2 3 4 5 6 7 9

link|flag
vote up 2 vote down

Here's a random idea that utilizes (abuses?) the data model.

class Counter(object):
  def __init__(self, val):
    self.val = val

  def __nonzero__(self):
    self.val -= 1
    return self.val >= 0

x = Counter(5)
while x:
  # Do something
  pass

I wonder if there is something like this in the standard libraries?

link|flag
The is an interesting approach. Never heard of nonzero before. – James McMahon May 6 at 15:05
vote up 9 vote down

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.

import gettext
gettext.bindtextdomain('myapplication', '/path/to/my/language/directory')
gettext.textdomain('myapplication')
_ = gettext.gettext
# ...
print _('This is a translatable string.')
link|flag
Thanks I will keep that in mind. – James McMahon May 4 at 5:49
vote up 6 vote down

You may be looking for

for _ in itertools.repeat(None, times): ...

this is THE fastest way to iterate times times in Python.

link|flag
I wasn't concerned with performance, I just was curious if there was a terser way to write the statement. While I have been using Python sporadically for about 2 years now I still feel there is a lot I am missing. Itertools is one of those things, thank you for the information. – James McMahon May 4 at 5:56
2  
That's interesting, I wasn't aware of that. I just took a look at the itertools docs; but I wonder why is this faster than just using range or xrange? – blackkettle May 4 at 6:02
Yeah why not just optimize range? – James McMahon May 4 at 6:04
@blackkettle: it's faster because it doesn't need to return the current iteration index, which is a measurable part of the cost of xrange (and Python 3's range, which gives an iterator, not a list). @nemo, range is as optimized as it can be, but needing to build and return a list is inevitably heavier work than an iterator (in Py3, range does return an iterator, like Py2's xrange; backwards compatibility doesn't permit such a change in Py2), especially one that doesn't need to return a varying value. – Alex Martelli May 7 at 14:17
1  
@Cristian, yes, clearly preparing and returning a Python int every time, inc. gc work, does have a measurable cost -- using a counter internally is no matter. – Alex Martelli Sep 26 at 23:04
show 2 more comments
vote up 0 vote down

May be answer would depend on what problem you have with using iterator? may be use

i = 100
while i:
    print i
    i-=1

or

def loop(N, doSomething):
    if not N:
        return
    print doSomething(N)
    loop(N-1, doSomething)

loop(100, lambda a:a)

but frankly i see no point in using such approaches

link|flag
vote up 10 vote down

The general idiom for assigning to a value that isn't used is to name it _.

for _ in range(times):
    do_stuff()
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.