提问人:Ivan 提问时间:7/21/2010 最后编辑:Karl KnechtelIvan 更新时间:6/28/2023 访问量:258402
Python while 语句上的 Else 子句
Else clause on Python while statement
问:
我注意到以下代码在 Python 中是合法的。我的问题是为什么?有具体原因吗?
n = 5
while n != 0:
print n
n -= 1
else:
print "what the..."
许多初学者在尝试将 if
/else 块放入 a a
或 for
循环中时,不小心偶然发现了这种语法,并且没有正确缩进 else
。解决方案是确保
else
块与 if
对齐,假设您打算将它们配对。这个问题解释了为什么它没有导致语法错误,以及生成的代码意味着什么。另请参阅我收到 IndentationError。我该如何修复它?,对于报告语法错误的情况。
参见 为什么 python 在 for 和 while 循环之后使用“else”? 有关如何充分利用该功能的问题。
答:
仅当条件变为 false 时,才会执行该子句。如果退出循环,或者引发异常,则不会执行该异常。else
while
break
一种考虑方式是将其视为与条件相关的 if/else 结构:
if condition:
handle_true()
else:
handle_false()
类似于循环结构:
while condition:
handle_true()
else:
# condition is false now, handle and go on with the rest of the program
handle_false()
例如,以下几点:
while value < threshold:
if not process_acceptable_value(value):
# something went wrong, exit the loop; don't pass go, don't collect 200
break
value = update(value)
else:
# value >= threshold; pass go, collect 200
handle_threshold_reached()
评论
while {} something
something
break
while
break
当 while 条件的计算结果为 false 时,将执行 else-子句。
从文档中:
while 语句用于重复执行,只要表达式为 true:
while_stmt ::= "while" expression ":" suite ["else" ":" suite]
这将重复测试表达式,如果为真,则执行第一个套件;如果表达式为 false(这可能是第一次测试),则执行子句套件(如果存在)并终止循环。
else
在第一个套件中执行的语句终止循环,而不执行子句的套件。在第一个套件中执行的语句将跳过该套件的其余部分,并返回测试表达式。
break
else
continue
当且仅当 while 循环不再满足其条件时(在您的示例中,when 为 false)执行该语句。else:
n != 0
因此,输出将是这样的:
5
4
3
2
1
what the...
评论
else
return
如果您通过击中循环条件或从尝试块的底部掉下来正常退出块,则执行该子句。如果您或退出区块,则不会执行它,或者引发异常。它不仅适用于 while 和 for 循环,还适用于 try 块。else
break
return
你通常会在通常提前退出循环的地方找到它,而从循环的末端跑出去是一个意外/不寻常的情况。例如,如果要循环浏览列表以查找值:
for value in values:
if value == 5:
print "Found it!"
break
else:
print "Nowhere to be found. :-("
评论
found_it=False
found_it
在 Python 中更好地使用 'while: else:' 构造应该是,如果在 'while' 中没有执行循环,则执行 'else' 语句。它今天的工作方式没有意义,因为您可以使用下面的代码获得相同的结果......
n = 5
while n != 0:
print n
n -= 1
print "what the..."
评论
else
break
return
print
break
请允许我举个例子来说明为什么使用这个 -子句。但:else
- 我的观点现在在Leo的回答中得到了更好的解释
- 我使用 - 而不是 -loop,但工作方式类似(除非遇到中断,否则执行)
for
while
else
- 有更好的方法可以做到这一点(例如,将其包装到函数中或引发异常)
突破多级循环
它是这样工作的:外部循环的末尾有一个中断,所以它只会执行一次。但是,如果内部循环完成(找不到除数),则它到达 else 语句,并且永远不会到达外部中断。这样,内部循环中的中断将打破两个循环,而不仅仅是一个循环。
for k in [2, 3, 5, 7, 11, 13, 17, 25]:
for m in range(2, 10):
if k == m:
continue
print 'trying %s %% %s' % (k, m)
if k % m == 0:
print 'found a divisor: %d %% %d; breaking out of loop' % (k, m)
break
else:
continue
print 'breaking another level of loop'
break
else:
print 'no divisor could be found!'
我的答案将集中在我们何时可以使用 while/for-else。
乍一看,使用时似乎没有什么不同
while CONDITION:
EXPRESSIONS
print 'ELSE'
print 'The next statement'
和
while CONDITION:
EXPRESSIONS
else:
print 'ELSE'
print 'The next statement'
因为该语句似乎总是在这两种情况下执行(当循环完成或未运行时)。print 'ELSE'
while
然后,只有当语句 print 'ELSE'
不会被执行时,情况才会有所不同。
这是当代码块内部出现中断
时 while
In [17]: i = 0
In [18]: while i < 5:
print i
if i == 2:
break
i = i +1
else:
print 'ELSE'
print 'The next statement'
....:
0
1
2
The next statement
如果不同于:
In [19]: i = 0
In [20]: while i < 5:
print i
if i == 2:
break
i = i +1
print 'ELSE'
print 'The next statement'
....:
0
1
2
ELSE
The next statement
return
不属于此类别,因为它对上述两种情况具有相同的效果。
异常引发也不会造成差异,因为当它引发时,下一个代码将被执行的位置是在异常处理程序中(除了块),子句中的代码或子句之后的代码将不会被执行。else
while
如果 while 循环没有中断,则执行 Else。
我有点喜欢用“跑步者”的比喻来思考它。
“其他”就像越过终点线,与你是从赛道的起点还是终点开始无关。“else”只有在两者之间中断时才不会执行。
runner_at = 0 # or 10 makes no difference, if unlucky_sector is not 0-10
unlucky_sector = 6
while runner_at < 10:
print("Runner at: ", runner_at)
if runner_at == unlucky_sector:
print("Runner fell and broke his foot. Will not reach finish.")
break
runner_at += 1
else:
print("Runner has finished the race!") # Not executed if runner broke his foot.
主要用例是使用这种断开嵌套循环的方法,或者如果你只想在循环没有在某处断开时运行一些语句(认为断开是一种不寻常的情况)。
例如,以下是关于如何在不使用变量或 try/catch 的情况下跳出内部循环的机制:
for i in [1,2,3]:
for j in ['a', 'unlucky', 'c']:
print(i, j)
if j == 'unlucky':
break
else:
continue # Only executed if inner loop didn't break.
break # This is only reached if inner loop 'breaked' out since continue didn't run.
print("Finished")
# 1 a
# 1 b
# Finished
我知道这是个老问题,但是......
正如雷蒙德·赫廷格(Raymond Hettinger)所说,应该将其称为而不是.
如果你看这个片段,我发现很容易理解。while/no_break
while/else
n = 5
while n > 0:
print n
n -= 1
if n == 2:
break
if n == 0:
print n
现在,我们可以将其交换并摆脱该检查,而不是在 while 循环之后检查条件。else
n = 5
while n > 0:
print n
n -= 1
if n == 2:
break
else: # read it as "no_break"
print n
我总是阅读它以理解代码,并且语法对我来说更有意义。while/no_break
else 子句仅在 while 条件变为 false 时执行。
以下是一些示例:
示例 1:最初条件为 false,因此执行 else-clause。
i = 99999999
while i < 5:
print(i)
i += 1
else:
print('this')
输出:
this
示例 2:while 条件永远不会变成 false,因为会破坏循环,因此没有执行 else-clause。i < 5
i == 3
i = 0
while i < 5:
print(i)
if i == 3:
break
i += 1
else:
print('this')
输出:
0
1
2
3
示例 3:while条件在 was 时变为 false,因此执行了 else-clause。i < 5
i
5
i = 0
while i < 5:
print(i)
i += 1
else:
print('this')
输出:
0
1
2
3
4
this
据我所知,在任何语言中向循环添加 else 的主要原因是在迭代器不在您的控制范围内的情况下。想象一下,迭代器在服务器上,你只需给它一个信号来获取接下来的 100 条数据记录。只要接收的数据长度为 100,您就希望循环继续进行。如果它更少,你需要它再去一次,然后结束它。在许多其他情况下,您无法控制上次迭代。在这些情况下,可以选择添加其他选项会使一切变得更加容易。
评论
else:
else:
else:
假设您必须在单个链表中搜索元素 x
def search(self, x):
position = 1
p =self.start
while p is not None:
if p.info == x:
print(x, " is at position ", position)
return True
position += 1
p = p.link
else:
print(x, "not found in list")
return False
因此,如果条件失败,否则将执行,希望它有所帮助!
评论
else:
while
中断
语句的子句是没有意义的——它不会改变代码的行为。else:
while
thing = 'hay'
while thing:
if thing == 'needle':
print('I found it!!') # wrap up for break
break
thing = haystack.next()
else:
print('I did not find it.') # wrap up for no-break
可能不幸命名的 -子句是你从循环耗尽中总结的地方,没有中断。else
- 如果在这种情况下无事可做,则不需要 -子句
else
- 您在调用后中断或→整个代码,或者是您的不中断位置
return
raise
try
- 相反,您可以设置默认值(例如
else
while
found = False
)- 但它会引发与处理默认值相关的错误
- -子句可以使您免于这些错误
else
如果使用具有非平凡总结的多个中断,则应在中断之前使用简单的赋值,对无中断使用-子句赋值,并使用 -- 或 - 以避免重复非重复的中断处理代码。else
if
elif
else
match
case
注意:以上所有内容也适用于for thing in haystack:
评论
else
after: