for循环
- 在
if...elif...else
的多个语句块中只会执行一个语句块
for
和while
都可以有else
语句
for…else
for
循环正常执行完的情况下,执行else
输出
- 当
for
循环中执行了跳出循环的语句(如break
),将不执行else
代码块的内容
1 2 3 4
| for condition: statement1 else: statement2
|
while循环
while…else
while
循环正常执行完的情况下,执行else
输出
- 当
while
循环中执行了跳出循环的语句(如break
),将不执行else
代码块的内容
1 2 3 4
| while condition: statement1 else: statement2
|
break语句
break
语句用于终止当前循环
- 通常与
if
、if...else
和if...elif...else
语句一起使用
continue语句
continue
语句用于跳过当前剩余要执行的代码,执行下一次循环
- 通常与
if
、if...else
和if...elif...else
语句一起使用
pass语句
参考资料
Thank you for your approval.
支付宝
微信支付
WeChat Bezahlung