1 if condition_1:
2 statement_block_1
3 elif condition_2:
4 statement_block_2
5 else:
6 statement_block_3
- while循环:可以使用 CTRL+C 来退出无限循环
while 判断条件(condition):
执行语句(statements)……
while <expr>:
<statement(s)>
else:
<additional_statement(s)>
for <variable> in <sequence>:
<statements>
else:
<statements>
- range()函数
- 生成数列:>>>for i in range(5)
- 指定区间的值:range(5,9)
- 以指定数字开始并指定不同的增量或者说是步长range(0,10,3)
- 可以结合range()和len()函数遍历一个序列的索引
- 还可以用range()来创建一个列表:>>>list(range(5)) [0, 1, 2, 3, 4]
- break和continue
- break是直接跳出循环
- continue是结束本轮循环到下次循环
- pass语句:空语句,为了保持程序结构的完整性
When you return with glory, you will be bathed in the golden rain.