作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
> for i in powers_of_two(129): ... print(i-6ren">
在 C++ 中,我可以很容易地编写如下所示的 for 循环来实现此目的
for(int i = 1; i < 100; i *= 2){}
有没有办法让 Python 中的 for
循环做同样的事情?或者 while
循环是我能做到这一点的唯一方法。
最佳答案
for
循环不做任何递增;他们迭代一个可迭代对象。
您可以创建一个生成器函数,将您的数字序列生成为可迭代对象:
def powers_of_two(start, stop=None):
if stop is None:
start, stop = 1, start # start at 1, as 0 * 2 is still 0
i = start
while i < stop:
yield i
i *= 2
for i in powers_of_two(129):
# ...
演示:
>>> for i in powers_of_two(129):
... print(i)
...
1
2
4
8
16
32
64
128
关于python - 有什么办法可以让 python 中的 "for"循环在每次迭代后使我的索引值加倍?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42779584/
我是一名优秀的程序员,十分优秀!