虽然在Python中的for循环与其它语言不大一样,但跳出循环还是与大多数语言一样,可以使用关键字continue
跳出本次循环或者break
跳出整个for循环。
break
# encoding=UTF-8
for x in range(10):
if x == 5:
break
print x
Output:
0
1
2
3
4
continue
# encoding=UTF-8
for x in range(10):
if x == 5:
continue
print x
Output:
0
1
2
3
4
6
7
8
9