search
HomeBackend DevelopmentPython Tutorial如何在Python中使用break跳出多层循环?

<span class="k">for</span> <span class="n">a</span> <span class="ow">in</span> <span class="nb">xrange</span><span class="p">(</span><span class="mi">10</span><span class="p">):</span>
    <span class="k">for</span> <span class="n">b</span> <span class="ow">in</span> <span class="nb">xrange</span><span class="p">(</span><span class="mi">20</span><span class="p">):</span>
        <span class="k">if</span> <span class="n">something</span><span class="p">(</span><span class="n">a</span><span class="p">,</span> <span class="n">b</span><span class="p">):</span>
            <span class="c"># Break the inner loop...</span>
            <span class="k">break</span>
    <span class="k">else</span><span class="p">:</span>
        <span class="c"># Continue if the inner loop wasn't broken.</span>
        <span class="k">continue</span>
    <span class="c"># Inner loop was broken, break the outer.</span>
    <span class="k">break</span>

回复内容:

我又有些忍不住要说了……你们学python是从来不看官方文档,只是跟着某某某中文教程一路撸下去的么?

Python的循环体自己就有else分支!
Python的循环体自己就有else分支!
Python的循环体自己就有else分支!

不只是if有,while和for都有else分支。循环体的else分支触发条件是循环正常结束。如果循环内被break跳出,就不执行else。所以这个逻辑是:如果循环内break了,不触发else,则执行下一句外层循环中的break;如果正常结束,执行else分支里的continue,直接跳转到外层循环的下一轮,跳过了第二个break。

不过这写法真尼玛丑啊……搞个布尔量会死么……

————————

其实感觉比较正确的姿势应该是拿个函数包起来然后用return…… 抛个异常外面接着不就完了 for和while的else子句用于循环后处理,仅在循环正常结束时执行。

问题中所举的例子,设置一个flag变量,代码看起来会更直观一些。

难说哪种写法好,我倒挺喜欢用else分支的。
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
continue是跳出当前循环还是所有循环continue是跳出当前循环还是所有循环Feb 02, 2023 pm 04:20 PM

continue是跳出当前循环。continue语句用于跳过本次循环,执行下次循环;当遇到continue语句时,程序会立即重新检测条件表达式,如果表达式结果为真则开始下次循环,如果表达式结果为假则退出循环。

在 Microsoft Loop 协作平台中,如何利用 AI Copilot 进行协作?在 Microsoft Loop 协作平台中,如何利用 AI Copilot 进行协作?Nov 18, 2023 pm 01:33 PM

MicrosoftLoop通过其新功能Copilot进行了增强,是一种现代工具,旨在改善团队协作的方式。它由三个主要部分组成:组件、页面和工作区。组件是列表或笔记等内容,无论您在何处使用它们,无论是在电子邮件、文档还是聊天中,它们都会保持更新。这意味着您始终使用最新信息。循环页面就像数字白板,您可以在其中将所有组件、任务和数据放在一起。这些页面可以随着项目的增长而增长,从而可以轻松地将所有内容保存在一个地方。Loop中的工作区是共享区域,您的团队可以在其中查看和组织对项目重要的所有内容,帮助每个

如何下载和使用微软循环如何下载和使用微软循环May 08, 2023 pm 01:16 PM

微软已经准备好允许用户访问Loop项目的第一个预览版。现在,让我们学习从哪里获取它,如何安装它以及如何充分利用它。想要了解如何跨Office应用使用此软件并管理任务?您来对地方了。什么是微软循环?我们应该怎么说呢?您可以将Loop与项目板进行比较。在这里,您可以看到所有Loop组件和Loop页面的列表,以及当前正在处理它们的人员。可以将其视为现代文件资源管理器,其中所有内容都是实时和协作的。循环页面是单独的画布,人们可以在其中共享和协作处理循环组件。此外,Loop组件会不断更新和编辑,无

PHP中continue关键字的作用和使用方法PHP中continue关键字的作用和使用方法Jun 28, 2023 pm 08:07 PM

PHP中continue关键字的作用和使用方法在PHP编程中,continue是一个非常有用的关键字。它用于控制循环语句的执行流程,允许跳过当前循环中的剩余代码,并直接进入下一次循环的执行。continue的作用是在循环语句中跳过当前迭代中的代码,并直接开始下一次迭代。当执行到continue语句时,循环控制会立即转到循环体的开始处,而不会执行continu

Go语言break停止语句有什么用Go语言break停止语句有什么用Jan 18, 2023 pm 03:46 PM

在Go语言中,break停止语句用于循环语句中跳出循环,并开始执行循环之后的语句。break语句可以结束for、switch和select的代码块,另外break语句还可以在语句后面添加标签,表示退出某个标签对应的代码块,标签要求必须定义在对应的 for、switch和select的代码块上。

PHP返回数组中所有值的总和PHP返回数组中所有值的总和Mar 21, 2024 pm 01:07 PM

这篇文章将为大家详细讲解有关PHP返回数组中所有值的总和,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。php返回数组中所有值的总和PHP中有多种方法可以计算数组中所有值的总和。以下是一些最常见的技术:1.array_sum()函数array_sum()函数可用于计算数组中所有值的总和。它接受一个数组作为参数,并返回一个整数结果。

php里面break的用法是什么php里面break的用法是什么Jan 31, 2023 pm 07:33 PM

在php中,break用于跳出当前的语法结构,执行下面的语句;可以在switch、for、while和do while等语句中使用,可以终止循环体的代码并立即跳出当前的循环,执行循环之后的代码。break语句可以带一个参数n,表示跳出循环的层数,如果要跳出多重循环的话,可以用n来表示跳出的层数,如果不带参数默认是跳出本重循环。

聊聊PHP switch语句中不使用break的情况聊聊PHP switch语句中不使用break的情况Mar 20, 2023 pm 04:55 PM

在PHP中使用switch语句来进行多个分支的选择是很常见的,通常在每个分支结束后会使用break语句来退出switch语句。然而,有些情况下我们不想使用break语句,本文将介绍在PHP switch语句中不使用break的情况。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),