- 中断声明
- 继续声明
- 中断声明
- 通过声明
中断声明 Python中的Break语句用于在触发某些外部条件时将控件带出循环。 Break语句放在循环体内(通常在if条件之后)。
文章图片
语法如下:
break
例子:
# Python program to
# demonstrate break statements = 'lsbin'
# Using for loop
for letter in s:print (letter)
# break the loop as soon it sees 'e'
# or 's'
if letter = = 'e' or letter = = 's' :
breakprint ( "Out of for loop" )
print ()i = 0# Using while loop
while True :
print (s[i])# break the loop as soon it sees 'e'
# or 's'
if s[i] = = 'e' or s[i] = = 's' :
break
i + = 1print ( "Out of while loop" )
输出如下:
geOut of for loopgeOut of while loop
在上面的示例中, 两个循环都在迭代字符串" lsbin", 并且一旦它们遇到字符" e"或" s", 则if条件变为true, 并且执行流程退出循环。
注意怪胎!巩固你的基础Python编程基础课程和学习基础知识。
首先, 你的面试准备可通过以下方式增强你的数据结构概念:Python DS课程。
推荐阅读
- JavaScript变量作用域之间的关系详解
- jQuery event.isDefaultPrevented()方法使用介绍
- PHP | dns_check_record()函数用法介绍
- CSS预处理器SASS用法介绍
- C和C++中的循环语句详细指南和代码示例
- 算法设计(求n范围内出现的最大整数)
- Python使用Pandas.iloc[]提取行
- Linux中的time命令及示例
- PHP | asin()函数用法指南