流程控制
Posted 张仁国
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了流程控制相关的知识,希望对你有一定的参考价值。
if判断
语法1. if 条件:
(四个空格)代码1
2018-05-29 代码2 相同代码块,自上而下依次运行
代码3
age_of_girl=31
if age_of_girl > 30:
print(‘阿姨好‘)
cls=‘human‘
sex=‘female‘
age=18
if cls == ‘human‘ and sex == ‘female‘ and age>16 and age <22:
print(‘表白‘)
语法2. if 条件:
代码1
代码2
else:
代码1
代码2
语法3. if 条件1:
代码1
代码2
elif条件2:
代码3
代码4
elif条件3:
代码5
代码6
else:
代码7
代码8
while循环
for循环
以上是关于流程控制的主要内容,如果未能解决你的问题,请参考以下文章