python学习之逻辑语句

算术运算

逻辑运算

and 

or 

not

当or和and不带括号同时出现在一个语句中时,and优先级更高,先算and再算or

优先级:or<and<not

成员运算

in  

not in

分支

if 表达式语句 :

    语句

多分支

条件循环 while

序列循环 for

分支循环嵌套

退出循环之break与continue的区别

    break退出整个循环语句,执行后面语句

   continue退出本次循环语句

continue、break都仅对最近一层循环有效,外层无效(如需要加标记,条件判断一个变量值)

posted @ 2024-07-05 11:20  mink007  阅读(8)  评论(0编辑  收藏  举报