Python中的break语句

Python break语句 (Python break statement)

Like other programming languages, in python, break statement is used to terminate the loop's execution. It terminates the loop's execution and transfers the control to the statement written after the loop.

与其他编程语言一样 ,在python中, break语句用于终止循环的执行。 它终止循环的执行并将控制权转移到循环之后编写的语句。

If there is a loop inside another loop (nested loop), and break statement is used within the inner loop – it breaks the statement of the inner loop and transfers the control to the next statement written after the inner loop. Similarly, if break statement is used in the scope of the outer loop – it breaks the execution of the outer loop and transfers the control to the next statement written after the outer loop.

如果另一个循环(嵌套循环)中有一个循环,并且在内部循环中使用break语句 –它将中断内部循环的语句并将控制权转移到内部循环之后编写的下一个语句。 同样,如果在外部循环的范围内使用break语句 –它将中断外部循环的执行,并将控制权转移到在外部循环之后编写的下一个语句。

Syntax of break statement:

break语句的语法:

    break

Break语句的Python示例 (Python examples of break statement )

Example 1: Here, we are printing the serious of numbers from 1 to 10 and terminating the loop if counter’s value is equal to 7.

示例1:在这里,我们打印从1到10的严重数字,并且如果counter的值等于7,则终止循环。

# python example of break statement
counter = 1
# loop for 1 to 10
# terminate if counter == 7
while counter<=10:
if counter == 7:
break
print(counter)
counter += 1
print("outside of the loop")

Output

输出量

1
2
3
4
5
6
outside of the loop

Example 2: Here, we are printing the characters of a string and terminating the printing of the characters if the character is not an alphabet.

示例2:在这里,我们正在打印字符串的字符,如果字符不是字母,则终止字符的打印。

# python example of break statement
string = "IncludeHelp.Com"
# terminate the loop if 
# any character is not an alphabet 
for ch in string:
if not((ch>='A' and ch<='Z') or (ch>='a' and ch<='z')):
break
print(ch)
print("outside of the loop")    

Output

输出量

I
n
c
l
u
d
e
H
e
l
p
outside of the loop

Example 3: Here, we have two loops, outer loop is "while True:" which is handling the multiple inputs and inner loop is using to print the table of given number – as input is 0 – inner loop will be terminated.

示例3:在这里,我们有两个循环,外循环是“ while True:”,它处理多个输入,而内循环则用于打印给定编号的表–输入为0 –内循环将终止。

# python example of break statement
count = 1
num = 0
choice = 0
while True:
# input the number 
num = int(input("Enter a number: "))
# break if num is 0
if num==0:
break   # terminates inner loop
# print the table 
count = 1
while count<=10:
print(num*count)
count += 1
# input choice
choice = int(input("press 1 to continue..."))
if choice != 1:
break   # terminates outer loop
print("bye bye!!!")

Output

输出量

Enter a number: 21
21 
42 
63 
84 
105
126
147
168
189
210
press 1 to continue...1
Enter a number: 23
23 
46 
69 
92 
115
138
161
184
207
230
press 1 to continue...0
bye bye!!!

翻译自: https://www.includehelp.com/python/break-statement.aspx

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/380718.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

php的延时sleep函数

语法&#xff1a;sleep&#xff08;秒数&#xff09; <?phpheader(content-type:text/html;charsetutf-8);sleep&#xff08;5&#xff09;;echo 我的名字是DL_one; ?>输出时可以发现要等待一段时间才能输出 sleep函数在代码测试时很有用

25种成为百万富翁的方法

1、做你真正感兴趣的事——你会花很多时间在上面&#xff0c;因此你一定要感兴趣才行&#xff0c;如果不是这样的话&#xff0c;你不合愿意把时间花在上面&#xff0c;就得不到成功。  2、自己当老板&#xff0c;为别人打工&#xff0c;你绝不会变成巨富&#xff0c;老板一心…

java byte数组string_byte数组和String之间的转化

JAVA里面关于byte数组和String之间的转换问题把byte转化成string&#xff0c;必须经过编码。例如下面一个例子:import java.io.UnsupportedEncodingException;public class test{public static void main(String g[]) {String s "12345abcd";byte b[] s.getBytes()…

arcsde 和oracle(双机热备)分布式安装(转载)

环境&#xff1a; oracle10gR2安装在两台服务器上&#xff0c;但只是做双机热备&#xff0c;操作系统均为windows server 2003 sp2 arcsde安装在第三台机器上&#xff0c;操作系统为windows server 2003 sp2 安装步骤&#xff1a; 1、需要在ArcSDE的安装机器上安装Or…

python中文件描述符_Python中的描述符

python中文件描述符In Python, a class that implements a get, set or delete methods for an object is called descriptors. Descriptors are the way to create attributes and add managed attributes to objects. These are used to protect the attributes from changes…

PHP的foeach用法

PHP 4 引入了 foreach 结构&#xff0c;用foreach可以帮助我们简单遍历数组&#xff0c;foreach 仅能用于数组&#xff0c;当用于其它数据类型或者一个未初始化的变量时会产生错误。 其用法为&#xff1a; foreach(数组 as 键 > 值){//循环体}当数组只有值&#xff0c;没有…

不为事务而事务

背景&#xff1a; 最近在做一个项目&#xff0c;需要用到两个第三方组件&#xff1a;北京莲塘语音组件和CMailSever前者作为语音聊天室的二次开发组件&#xff0c;后者用于网站的小型邮件系统二次开发组件 需求&#xff1a; 用户在主程序登陆后&#xff0c;无须再次登陆…

英语学习过程中的几点体会(1)

这几天一直在解决英语学习中的单词问题.确切的说就是积累单词量,在我们这里也不叫单词量,我给它起了个新名称 叫做:音像量 关于音像量的积累.遇到了很多问题. 比如我们找了很多资料,有国内的,国外的.视频,图片.甚至我们还自己做了两版词库.但是每个资料都有不同的问题. 每次开会…

java split 坑_java String split 踩坑记

split操作是出镜率非常高的一个方法, 但是我们使用中通常会使用两个类提供的split方法, 他们在入参类型一样, 但是效果却有一些差别, 稍不注意容易踩坑.java.lang.String#splitString提供了两个重载方法:public String[] split(String regex, int limit)public String[] split(…

c#给定编码中的字符无效_C#程序检查给定的字符串是否等于(==)运算符

c#给定编码中的字符无效Input two strings and check whether they are equal or not using C# program. 输入两个字符串&#xff0c;并使用C&#xff03;程序检查它们是否相等。 用于字符串比较的C&#xff03;代码 (C# code for string comparison) Here, we are asking for…

bugzilla学习

October 03, 2003 bugzilla学习 Bugzilla是一个bug追踪系统&#xff0c;用以管理bug提交、bug消除&#xff0c;不仅能降低同样错误的重复发生&#xff0c;提高开效率&#xff0c;而且有助于项目管理的难度。更有人打算用借助此系统&#xff0c;用前人的bug来教育新来的程序员&a…

vbs向指定的日志文件添加日志

向指定的文件写字符串&#xff0c;第三个参数指定是否删除原来的内容 Function Z_WriteLog(sFileName, sText)Dim fs, fso, sLogsLog Now() & ": " & sTextset fs CreateObject("Scripting.FileSystemObject")set fso fs.OpenTextFile(sFileNam…

php的list函数

作用&#xff1a;把索引数组中的值赋给一组变量&#xff0c;像 array() 一样&#xff0c;这不是真正的函数&#xff0c;而是语言结构。 list() 可以在单次操作内就为一组变量赋值。 <?phpheader(content-type:text/html;charsetutf-8);$personarray(DL_one,18,man);list($…

java get key_java如何获取String里面的键值对:key=valuekey=value

我一个朋友帮我写了一个&#xff0c;分享给大家&#xff1a;package com.qtay.gls.common;import java.util.Arrays;import java.util.HashMap;import java.util.Map;import java.util.Objects;public class FormDecoder {private Map parameters;public FormDecoder(String st…

python中二进制整数_Python程序查找表示二进制整数的必要位数

python中二进制整数Given an integer number and we have to find necessary bits to represent it in binary in python. 给定一个整数&#xff0c;我们必须找到必要的位以用python二进制表示它 。 To find necessary bits to represent a number – we use "bit_length…

我也终于有被认为是高手的时候了,^_^

昨天&#xff0c;马超打电话&#xff0c;让我回去给老同事讲安装的制作过程&#xff0c;说什么——他们不会。 汗......心想&#xff0c;当初谁教我啊?!还不都是自己学习摸索的&#xff0c;可现如今人家话说到这儿&#xff0c;也不好硬搪塞掉&#xff0c;去就去呗&…

php的range函数

range() 函数用于创建一个包含指定范围的元素的数组。 语法&#xff1a; range(low,high,step) “”“ low:起始值 high&#xff1a;最大值 step&#xff1a;步长&#xff0c;可写可不写&#xff0c;默认为1 ”“”<?phpheader(content-type:text/html;charsetutf-8);$arr…

单挑力扣(LeetCode)SQL题:1549. 每件商品的最新订单(难度:中等)

相信很多学习SQL的小伙伴都面临这样的困境&#xff0c;学习完书本上的SQL基础知识后&#xff0c;一方面想测试下自己的水平&#xff1b;另一方面想进一步提升&#xff0c;却不知道方法。 其实&#xff0c;对于技能型知识&#xff0c;我的观点一贯都是&#xff1a;多练习、多实…

php常量变量连接,PHP常量及变量区别原理详解

常量&#xff1a;用于储存一个不会变化也不希望变化的数据的标示符(命名规则与变量相同)定义形式&#xff1a;使用 define() 函数定义使用形式&#xff1a;define(“常量名” &#xff0c;常量值)使用 counst 语法定义使用形式&#xff1a;counst 常量名 常量值使用常量&#…

js生成随机数

Math.round(Math.random() * 10000) 父窗口弹出子窗口&#xff0c;子窗口选择值后&#xff0c;赋值到父窗口的某个控件上 父窗口代码&#xff1a; function fn_GetMarksClassModel() { var url "SelectMarksClassModel.aspx?temp" Math.round(Math.random(…