如何在 Python 中使用 for 循环中的 else 条件语句?
循环(for 和 while)中的 else 块在循环的所有迭代完成后并在程序流退出循环体之前执行。语法如下 −
语法
while expr==True: #statements to be iterated while expr is true. else: #this statement(s) will be executed afteriterations are over
# 退出循环体后将执行此操作
示例
for x in range(6): print (x) else: print ("else block of loop") print ("loop is over")
输出
输出如下所示 −
0 1 2 3 4 5 else block of loop loop is over
广告