Python For Else
For 循环中的 Else
在 for
循环中,else
关键字指定一个代码块,当循环结束后要执行该代码块。
注意:如果循环被 break
语句停止,则 else
代码块将不会执行。
示例
当 x
为 3 时,中断循环,看看 else
代码块发生了什么。
for x in range(6)
if x == 3: break
print(x)
else
print("最终完成!")
自己试一试 »
在 for
循环中,else
关键字指定一个代码块,当循环结束后要执行该代码块。
注意:如果循环被 break
语句停止,则 else
代码块将不会执行。
当 x
为 3 时,中断循环,看看 else
代码块发生了什么。
for x in range(6)
if x == 3: break
print(x)
else
print("最终完成!")
自己试一试 »
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]