1\if语句:if condition 是True,执行if clause语句,并跳过后面的elif或else语句;执行一次
2\while语句;只要while condition是True,就会执行while clause语句,执行完后回头再看while condition的判断值; 只要condition真就无限次执行
while clause中continue语句:跳过后面的执行语句,回头继续判断while condition;
break语句:立即跳出循环,可以为break的执行设定一个if condition;
3\for语句:for i in range(a,b,c):
clause