Python for循环 - 为什么这不是无限循环?

时间:2023-02-12 08:46:44

Consider the following snippet of Python code:

考虑以下Python代码片段:

x = 14
for k in range(x):
    x += 1

At the end of execution, x is equal to 28.

在执行结束时,x等于28。

My question: shouldn't this code loop forever? At each iteration, it checks if k is less than x. However, x is incremented within the for loop, so it has a higher value for the next comparison.

我的问题:这个代码不应该永远循环吗?在每次迭代时,它检查k是否小于x。但是,x在for循环中递增,因此它具有较高的值用于下一次比较。

4 个解决方案

#1


9  

range(x) is not a "command". It creates a range object one time, and the loop iterates over that. Changing x does not change all objects that were made using it.

range(x)不是“命令”。它创建一个范围对象,循环遍历该范围。更改x不会更改使用它创建的所有对象。

>>> x = 2
>>> k = range(x)
>>> list(k)
[0, 1]
>>> x += 1
>>> list(k)
[0, 1]

#2


6  

no, range(x) will return a list with the items[0,1,2,3,4,5,6,7,8,9,10,11,12,13] these items will be iterated. Each time that the loop body gets evaluated x's value change but this does not affects the list that was already generate.

不,range(x)将返回带有项[0,1,2,3,4,5,6,7,8,9,10,11,12,13]的列表,这些项目将被迭代。每次循环体被评估时x的值都会发生变化,但这不会影响已经生成的列表。

in other words the collection that you will be iterating will be generated only one time.

换句话说,您将迭代的集合将只生成一次。

#3


1  

It's because python for in loop have different behavior compared to for (in other languages): range(x) is not executed in every iteration, but at first time, and then for in iterate across its elements. If you want to change the code to run an infinite loop you can use a while instead (and in that case range(x) is pointless).

这是因为for循环中的python与for(在其他语言中)相比具有不同的行为:range(x)不是在每次迭代中执行,而是在第一次执行,然后在其元素中迭代。如果要更改代码以运行无限循环,则可以使用while(而在这种情况下,范围(x)是无意义的)。

#4


0  

The for loop in python is not an iterator, but rather iterates over a sequence / generator i.e. any form of iterable.

python中的for循环不是迭代器,而是遍历序列/生成器,即任何形式的可迭代。

Considering this, unless the iterable is infinite, the loop will not be infinite. A sequence cannot be infinite but you can possibly create/utilite an infinite generator. One possibility is to use itertools.count which generates a non-ending sequence of numbers starting from a specified start with a specified interval.

考虑到这一点,除非迭代是无限的,否则循环将不是无限的。序列不能是无限的,但您可以创建/使用无限生成器。一种可能性是使用itertools.count,它从指定的开始处以指定的间隔开始生成一个非结束的数字序列。

from itertools import count        |  for(;;) {
for i in count(0):                 |      //An infinite block
    #An infinite block             |  }

Alternatively, you can always utilize while loop to create a classical infinite loop

或者,您始终可以使用while循环来创建经典的无限循环

while True:
     #An infinite block

#1


9  

range(x) is not a "command". It creates a range object one time, and the loop iterates over that. Changing x does not change all objects that were made using it.

range(x)不是“命令”。它创建一个范围对象,循环遍历该范围。更改x不会更改使用它创建的所有对象。

>>> x = 2
>>> k = range(x)
>>> list(k)
[0, 1]
>>> x += 1
>>> list(k)
[0, 1]

#2


6  

no, range(x) will return a list with the items[0,1,2,3,4,5,6,7,8,9,10,11,12,13] these items will be iterated. Each time that the loop body gets evaluated x's value change but this does not affects the list that was already generate.

不,range(x)将返回带有项[0,1,2,3,4,5,6,7,8,9,10,11,12,13]的列表,这些项目将被迭代。每次循环体被评估时x的值都会发生变化,但这不会影响已经生成的列表。

in other words the collection that you will be iterating will be generated only one time.

换句话说,您将迭代的集合将只生成一次。

#3


1  

It's because python for in loop have different behavior compared to for (in other languages): range(x) is not executed in every iteration, but at first time, and then for in iterate across its elements. If you want to change the code to run an infinite loop you can use a while instead (and in that case range(x) is pointless).

这是因为for循环中的python与for(在其他语言中)相比具有不同的行为:range(x)不是在每次迭代中执行,而是在第一次执行,然后在其元素中迭代。如果要更改代码以运行无限循环,则可以使用while(而在这种情况下,范围(x)是无意义的)。

#4


0  

The for loop in python is not an iterator, but rather iterates over a sequence / generator i.e. any form of iterable.

python中的for循环不是迭代器,而是遍历序列/生成器,即任何形式的可迭代。

Considering this, unless the iterable is infinite, the loop will not be infinite. A sequence cannot be infinite but you can possibly create/utilite an infinite generator. One possibility is to use itertools.count which generates a non-ending sequence of numbers starting from a specified start with a specified interval.

考虑到这一点,除非迭代是无限的,否则循环将不是无限的。序列不能是无限的,但您可以创建/使用无限生成器。一种可能性是使用itertools.count,它从指定的开始处以指定的间隔开始生成一个非结束的数字序列。

from itertools import count        |  for(;;) {
for i in count(0):                 |      //An infinite block
    #An infinite block             |  }

Alternatively, you can always utilize while loop to create a classical infinite loop

或者,您始终可以使用while循环来创建经典的无限循环

while True:
     #An infinite block