目录
三、break 和 continue 语句及循环中的 else 子句
一、条件语句
1、if 语句
if condition_1:
statement_block_1
elif condition_2:
statement_block_2
else:
statement_block_3
注意:在 Python 中没有 switch – case 语句。
2、if 嵌套
if 表达式1:
语句
if 表达式2:
语句
elif 表达式3:
语句
else:
语句
elif 表达式4:
语句
else:
语句
二、循环语句
1、while 循环
while 判断条件(condition):
执行语句(statements)……
2、while 循环使用 else 语句
while <expr>:
<statement(s)>
else:
<additional_statement(s)>
3、for 循环
for <variable> in <sequence>:
<statements>
4、for 循环使用 else 语句
for <variable> in <sequence>:
<statements>
else:
<statements>
三、break 和 continue 语句及循环中的 else 子句
break 语句可以跳出 for 和 while 的循环体。如果你从 for 或 while 循环中终止,任何对应的循环 else 块将不执行。
continue 语句被用来告诉 Python 跳过当前循环块中的剩余语句,然后继续进行下一轮循环。
四、pass 语句
Python 中 pass 语句是空语句,是为了保持程序结构的完整性。
pass 不做任何事情,一般用做占位语句。