可以不带i来做下面的事情吗?

for i in range(some_number):
    # do something

如果你只是想做某件事N次而不需要迭代器。


当前回答

我大体上同意以上给出的解决方案。即:

在for循环中使用下划线(2行或更多行) 定义一个普通的while计数器(3行或更多行) 用__nonzer__实现声明一个自定义类(更多行)

如果要像#3中那样定义一个对象,我建议实现protocol for with keyword或apply contextlib。

此外,我还提出另一种解决办法。它是一个3行代码,并不是非常优雅,但它使用itertools包,因此可能会感兴趣。

from itertools import (chain, repeat)

times = chain(repeat(True, 2), repeat(False))
while next(times):
    print 'do stuff!'

在这个例子中,2是循环迭代的次数。Chain包装了两个重复迭代器,第一个是有限的,第二个是无限的。记住,这些是真正的迭代器对象,因此它们不需要无限内存。显然,这比解决方案#1要慢得多。除非作为函数的一部分编写,否则可能需要清理times变量。

其他回答

可以使用_11(或任何数字或其他无效标识符)来防止与gettext发生名称冲突。任何时候你使用下划线+无效标识符,你得到一个可以在for循环中使用的虚拟名称。

我们可以使用while & yield,我们可以像这样创建自己的循环函数。在这里你可以参考官方文件。

def my_loop(start,n,step = 1):
    while start < n:
        yield start
        start += step

for x in my_loop(0,15):
    print(x)

每个人建议你使用_并不是说_经常被用作一个gettext函数的快捷方式,所以如果你想让你的软件在多种语言中可用,那么你最好避免将它用于其他目的。

import gettext
gettext.bindtextdomain('myapplication', '/path/to/my/language/directory')
gettext.textdomain('myapplication')
_ = gettext.gettext
# ...
print _('This is a translatable string.')

也许答案取决于你在使用迭代器时遇到了什么问题? 可能会使用

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)

但坦率地说,我认为使用这种方法没有任何意义

#Return first n items of the iterable as a list
list(itertools.islice(iterable, n))

摘自http://docs.python.org/2/library/itertools.html