python的break和continue

8.python语法
for key in keys:
if key = one:
dada_id = key['']
else
break

此时的break表示跳出整个for循环,不在继续执行了当前循环,继续往下执行

for key in keys:
if key = one:
dada_id = key['']
else
continue

此时的continue表示跳出else,继续下一个for到if

posted @ 2020-12-21 16:56  欢天喜地  阅读(87)  评论(0编辑  收藏  举报