continue and break
Posted gwxu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了continue and break相关的知识,希望对你有一定的参考价值。
#-*- coding:utf-8 -*-
start = 1
while True:
if start == 7:
start += 1
continue
print (start)
if start == 10:
break
start += 1
以上是关于continue and break的主要内容,如果未能解决你的问题,请参考以下文章
shell编程-for语法while语法breakcontinue