Python探索记(08)——break和continue

简介: 请看如下示例:# @Time : 2017/7/2 17:12# @Author : 原创作者:谷哥的小弟# @Site : 博客地址:http://blog.

请看如下示例:

# @Time    : 2017/7/2 17:12
# @Author  : 原创作者:谷哥的小弟
# @Site    : 博客地址:http://blog.csdn.net/lfdfhl
# @DESC    : break和continue
'''
利用break语句结束整个循环
'''
index=10
while index>0:
    if index==5:
        break
    print('index=',index)
    index=index-1
print('= '*15)
'''
利用continue结束本次循环再继续着执行下一次的循环
'''
name='大泽玛利亚'
for per in name:
    if per=='玛':
        continue
    print('per=',per)

输出结果如下:

index= 10
index= 9
index= 8
index= 7
index= 6
= = = = = = = = = = = = = = = 
per= 大
per= 泽
per= 利
per= 亚
相关文章
|
7月前
|
C语言 Python
Python break 语句
Python break 语句
|
7月前
|
Python
在Python中,`continue` 语句
在Python中,`continue` 语句
93 5
|
7月前
|
Python
在Python中,`break`语句
在Python中,`break`语句
101 1
|
2月前
|
Java C++ Python
【Python】循环语句(while、for)、continue、break
【Python】循环语句(while、for)、continue、break
51 0
|
7月前
|
Python
Python continue 语句
Python continue 语句
|
7月前
|
程序员 Python
Python continue 语句
Python continue 语句
|
7月前
|
Python
Python中continue语句
Python中continue语句
112 2
|
7月前
|
Python
Python基础教程——continue语句
Python基础教程——continue语句
|
7月前
|
Python
Python基础教程——break语句
Python基础教程——break语句
|
7月前
|
程序员 数据处理 数据安全/隐私保护
Python break语句
Python break语句
下一篇
DataWorks