> for i in powers_of_two(129): ... print(i-6ren">
gpt4 book ai didi

python - 有什么办法可以让 python 中的 "for"循环在每次迭代后使我的索引值加倍?

转载 作者:太空狗 更新时间:2023-10-29 21:36:16 29 4
gpt4 key购买 nike

在 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/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com