# Python continue 语句
Python continue 语句跳出本次循环,而break跳出整个循环。
continue 语句用来告诉Python跳过当前循环的剩余语句,然后继续进行下一轮循环。
continue语句用在while和for循环中。
**Python 语言 continue 语句语法格式如下:**
```
continue
```
**流程图:**
![cpp_continue_statement](https://box.kancloud.cn/2015-12-12_566c0ff36922f.jpg)
**实例:**
```
#!/usr/bin/python
for letter in 'Python': # First Example
if letter == 'h':
continue
print 'Current Letter :', letter
var = 10 # Second Example
while var > 0:
var = var -1
if var == 5:
continue
print 'Current variable value :', var
print "Good bye!"
```
以上实例执行结果:
```
Current Letter : P
Current Letter : y
Current Letter : t
Current Letter : o
Current Letter : n
Current variable value : 9
Current variable value : 8
Current variable value : 7
Current variable value : 6
Current variable value : 4
Current variable value : 3
Current variable value : 2
Current variable value : 1
Current variable value : 0
Good bye!
```
- Python 基础教程
- Python 简介
- Python 环境搭建
- Python 基础语法
- Python 变量类型
- Python 运算符
- Python 条件语句
- Python 循环语句
- Python While循环语句
- Python for 循环语句
- Python 循环嵌套
- Python break 语句
- Python continue 语句
- Python pass 语句
- Python 数字
- Python 字符串
- Python 列表(Lists)
- Python 元组
- Python 字典(Dictionary)
- Python 日期和时间
- Python 函数
- Python 模块
- Python 文件I/O
- Python 异常处理
- Python 高级教程
- Python 面向对象
- Python 正则表达式
- Python CGI编程
- Python 使用SMTP发送邮件
- Python 多线程
- Python 2.x与3??.x版本区别
- Python IDE
- Python JSON
- Python3 教程
- Python3 基础语法
- Python3 基本数据类型
- Python3 解释器
- Python3 注释
- Python3 数字运算
- Python3 字符串
- Python3 列表
- Python3 编程第一步
- Python3 条件控制
- Python3 循环
- Python3 函数
- Python3 数据结构
- Python3 模块
- Python3 输入和输出
- Python3 错误和异常
- Python3 类
- Python3 标准库概览
- 免责声明