How python jumps out of multiple loops

Source: Internet
Author: User

http://blog.csdn.net/churximi/article/details/51043595

Method 1: Custom Exceptions

    #-*-coding:utf-8-*-          """function: Python jumps out of the loop"""      #Method 1: Custom Exceptions                classGetoutofloop (Exception):Pass      Try:           forIinchRange (5):               forJinchRange (5):                  ifi = = J = 2:                      RaiseGetoutofloop ()Else:                      PrintI'----', JexceptGetoutofloop:Pass  

Method 2: Encapsulate the loop as a function, return

Method 3: Use For...else ... Statement

    #-*-Coding:utf-8-*-"" "     function: Python jumps out of the loop" "      # Method 2:for...else ... Used to jump out of the specified loop layer for            I in range (5): for J in range (          5): for K in              range (5):                  If i = = j = k = = 3:                  break else:                          print I, '----', J, '----', K              else:        # else1                  continue              break        # BREAK1          Else:            # Else2              continue          break            # BREAK2  

How python jumps out of multiple loops

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.