循环语句

1、while 条件:

        如果条件为真(True)执行这里的语句


break:跳出一层循环体

2、 if  else

if  条件为真:

        执行这里的语句

else:

        执行这里的语句

你可能感兴趣的:(循环语句)