Python小甲鱼第七堂课——分支结构
本帖最后由 Zhichao_Li 于 2020-6-18 16:36 编辑分支(branch)
一、 分支结构
1. if 条件判断
(1)if condition:
statement(s)
*缩进 : 决定从属关系
(2)if condition:
statements
else:
statement // if else
(3)if condition1:
statements(s)
elif condition2:
statements
elifcndition3:
statements
... // 多重if-else
(4)if condition1:
statements(s)
elif condition2:
statements
elifcndition3:
statements
...
else: // 上面条件均不成立
statements
(5) statement 1 if condition else statement 2
2. 分支结构的嵌套
if condition-1:
statement-1
else:
statement-2
if condition-2:
statement-3
else:
statement-4
...
come on 你说是鱼甲就是鱼甲,彳亍不彳亍? 老八秘制 发表于 2020-6-17 21:28
你说是鱼甲就是鱼甲,彳亍不彳亍?
嘿嘿,小甲鱼=鱼甲,改回来改回来
页:
[1]