本文以Python3.6.4为基础总结了Python支持的控制流语句
if 语句
定义:
ifcondition1:
statements
elifcondition2:
statements
else:
statements
for语句
定义:
forvarinlist:
statements
else:
statements
while语句
定义:
whilecondition:
statements
else:
statements
break,continue,pass语句
break:终止整个循环
continue:直接开始下一循环
pass:不做任何事情
range()函数
range(Num):从0到Num-1
range(start,end):从start到end-1
range(start,end,step):从start开始,以step为步长到end-1
注:参数应为整数
领取专属 10元无门槛券
私享最新 技术干货