if a: b
if a: b else: c
if a: b elif c: d elif e: f else: g
else 和 elif 均可选
else
elif
while
while a: b
for
for i in a: b
break
continue
while a: b else: c
for i in a: b else: c
若循环正常执行完(没有经过 break),则在循环结束后执行 else 部分