14 python - break和continue

简介: 14 python - break和continue

1. break

1.1 for循环中
name = 'dongGe'
 for x in name:
     print('----')
     print(x)

运行结果:

带有break的循环示例如下:

name = 'dongGe'
for x in name:
    print('----')
    if x == 'g': 
        break
    print(x)

运行结果:

1.2 while循环

普通的循环示例如下:

i = 0
while i<10:
    i = i+1
    print('----')
    print(i)

运行结果:

带有break的循环示例如下:

i = 0
while i<10:
    i = i+1
    print('----')
    if i==5:
        break
    print(i)

运行结果:

1.3总结:

break的作用:用来结束整个循环

2. continue

2.1 for循环

带有continue的循环示例如下:

name = 'dongGe'
for x in name:
    print('----')
    if x == 'g': 
        continue
    print(x)

运行结果:

2.2 while循环

带有continue的循环示例如下:

i = 0
  while i<10:
      i = i+1
      print('----')
      if i==5:
          continue
      print(i)

运行结果:

2.3总结

continue的作用:用来结束本次循环,紧接着执行下一次的循环。

3.注意点

break/continue只能用在循环中,除此以外不能单独使用

break/continue在嵌套循环中,只对最近的一层循环起作用

目录
相关文章
|
4月前
|
C语言 Python
Python break 语句
Python break 语句
|
4月前
|
Python
在Python中,`continue` 语句
在Python中,`continue` 语句
43 5
|
4月前
|
Python
在Python中,`break`语句
在Python中,`break`语句
49 1
|
4月前
|
Python
Python continue 语句
Python continue 语句
|
4月前
|
程序员 Python
Python continue 语句
Python continue 语句
|
4月前
|
Python
Python中continue语句
Python中continue语句
37 2
|
4月前
|
Python
Python基础教程——continue语句
Python基础教程——continue语句
|
4月前
|
Python
Python基础教程——break语句
Python基础教程——break语句
|
4月前
|
程序员 数据处理 数据安全/隐私保护
Python break语句
Python break语句
|
4月前
|
Python
Python中continue语句
Python中continue语句
39 0