Breaking out of a while loop when hitting a duplicate












0















I have this code:



steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

for step in steps:

while True:
last_item = ""

for item in step:
if item != last_item:
print(item)
last_item = item
else:
break


The desired result is for the loop to print A, then B, then C, but when hitting the first duplicate C it should move on to printing D, then E, then F, and then stop when hitting the first duplicate F.



This is a minimal reproducible example of a loop to be used in a web scraping job, so solutions that involve doing set(steps)or other operations on the example steps as such will not solve it. My question has to to with the architecture of the loop.










share|improve this question























  • Can you have a set of seen elements and the print only if not in seen?

    – Daniel Mesejo
    Jan 1 at 10:18






  • 2





    Comment while true and it should work in the way you want. Check this

    – Rajen Raiyarela
    Jan 1 at 10:20













  • What is going wrong with your code at the moment? If you move the while loop outside for step in steps: then it seems to work as expected.

    – Ari Cooper-Davis
    Jan 1 at 10:20
















0















I have this code:



steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

for step in steps:

while True:
last_item = ""

for item in step:
if item != last_item:
print(item)
last_item = item
else:
break


The desired result is for the loop to print A, then B, then C, but when hitting the first duplicate C it should move on to printing D, then E, then F, and then stop when hitting the first duplicate F.



This is a minimal reproducible example of a loop to be used in a web scraping job, so solutions that involve doing set(steps)or other operations on the example steps as such will not solve it. My question has to to with the architecture of the loop.










share|improve this question























  • Can you have a set of seen elements and the print only if not in seen?

    – Daniel Mesejo
    Jan 1 at 10:18






  • 2





    Comment while true and it should work in the way you want. Check this

    – Rajen Raiyarela
    Jan 1 at 10:20













  • What is going wrong with your code at the moment? If you move the while loop outside for step in steps: then it seems to work as expected.

    – Ari Cooper-Davis
    Jan 1 at 10:20














0












0








0








I have this code:



steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

for step in steps:

while True:
last_item = ""

for item in step:
if item != last_item:
print(item)
last_item = item
else:
break


The desired result is for the loop to print A, then B, then C, but when hitting the first duplicate C it should move on to printing D, then E, then F, and then stop when hitting the first duplicate F.



This is a minimal reproducible example of a loop to be used in a web scraping job, so solutions that involve doing set(steps)or other operations on the example steps as such will not solve it. My question has to to with the architecture of the loop.










share|improve this question














I have this code:



steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

for step in steps:

while True:
last_item = ""

for item in step:
if item != last_item:
print(item)
last_item = item
else:
break


The desired result is for the loop to print A, then B, then C, but when hitting the first duplicate C it should move on to printing D, then E, then F, and then stop when hitting the first duplicate F.



This is a minimal reproducible example of a loop to be used in a web scraping job, so solutions that involve doing set(steps)or other operations on the example steps as such will not solve it. My question has to to with the architecture of the loop.







python






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jan 1 at 10:14









DIGSUMDIGSUM

62851626




62851626













  • Can you have a set of seen elements and the print only if not in seen?

    – Daniel Mesejo
    Jan 1 at 10:18






  • 2





    Comment while true and it should work in the way you want. Check this

    – Rajen Raiyarela
    Jan 1 at 10:20













  • What is going wrong with your code at the moment? If you move the while loop outside for step in steps: then it seems to work as expected.

    – Ari Cooper-Davis
    Jan 1 at 10:20



















  • Can you have a set of seen elements and the print only if not in seen?

    – Daniel Mesejo
    Jan 1 at 10:18






  • 2





    Comment while true and it should work in the way you want. Check this

    – Rajen Raiyarela
    Jan 1 at 10:20













  • What is going wrong with your code at the moment? If you move the while loop outside for step in steps: then it seems to work as expected.

    – Ari Cooper-Davis
    Jan 1 at 10:20

















Can you have a set of seen elements and the print only if not in seen?

– Daniel Mesejo
Jan 1 at 10:18





Can you have a set of seen elements and the print only if not in seen?

– Daniel Mesejo
Jan 1 at 10:18




2




2





Comment while true and it should work in the way you want. Check this

– Rajen Raiyarela
Jan 1 at 10:20







Comment while true and it should work in the way you want. Check this

– Rajen Raiyarela
Jan 1 at 10:20















What is going wrong with your code at the moment? If you move the while loop outside for step in steps: then it seems to work as expected.

– Ari Cooper-Davis
Jan 1 at 10:20





What is going wrong with your code at the moment? If you move the while loop outside for step in steps: then it seems to work as expected.

– Ari Cooper-Davis
Jan 1 at 10:20












4 Answers
4






active

oldest

votes


















1














Option with while loop, accessing objects by index:



steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

i = 0
ii = 0
memo =
res =
while True:
if i == len(steps): break
e = steps[i][ii]
if e in memo:
res.append(memo)
memo =
ii = 0
i += 1
else:
memo.append(e)
print(e)
ii += 1


It prints out:



# A
# B
# C
# D
# E
# F


While res value is:



print(res) #=> [['A', 'B', 'C'], ['D', 'E', 'F']]





share|improve this answer































    5














    steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

    for step in steps:
    last_item = ""

    for item in step:
    if item != last_item:
    print(item)
    last_item = item
    else:
    break


    When you keep while true and break is encountered from inner for loop, control will never pass to outer for loop for getting next item




    (['D', 'E', 'F', 'F', 'F'])




    in outer list, creating infinite loop.






    share|improve this answer

































      1














      You do not need while True. Except for that part your code works as expected:



      steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

      for step in steps:

      # while True:
      last_item = ""

      for item in step:
      if item != last_item:
      print(item)
      last_item = item
      else:
      break


      Output:



      A
      B
      C
      D
      E
      F





      share|improve this answer































        0














        Remove this while loop from your code. [break] below works in this loop. To achieve your desired output, [break] need to break the for loop above.



        steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

        for step in steps:

        # while True:
        last_item = ""

        for item in step:
        if item != last_item:
        print(item)
        last_item = item
        else:
        break





        share|improve this answer























          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53994639%2fbreaking-out-of-a-while-loop-when-hitting-a-duplicate%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          4 Answers
          4






          active

          oldest

          votes








          4 Answers
          4






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          Option with while loop, accessing objects by index:



          steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

          i = 0
          ii = 0
          memo =
          res =
          while True:
          if i == len(steps): break
          e = steps[i][ii]
          if e in memo:
          res.append(memo)
          memo =
          ii = 0
          i += 1
          else:
          memo.append(e)
          print(e)
          ii += 1


          It prints out:



          # A
          # B
          # C
          # D
          # E
          # F


          While res value is:



          print(res) #=> [['A', 'B', 'C'], ['D', 'E', 'F']]





          share|improve this answer




























            1














            Option with while loop, accessing objects by index:



            steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

            i = 0
            ii = 0
            memo =
            res =
            while True:
            if i == len(steps): break
            e = steps[i][ii]
            if e in memo:
            res.append(memo)
            memo =
            ii = 0
            i += 1
            else:
            memo.append(e)
            print(e)
            ii += 1


            It prints out:



            # A
            # B
            # C
            # D
            # E
            # F


            While res value is:



            print(res) #=> [['A', 'B', 'C'], ['D', 'E', 'F']]





            share|improve this answer


























              1












              1








              1







              Option with while loop, accessing objects by index:



              steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

              i = 0
              ii = 0
              memo =
              res =
              while True:
              if i == len(steps): break
              e = steps[i][ii]
              if e in memo:
              res.append(memo)
              memo =
              ii = 0
              i += 1
              else:
              memo.append(e)
              print(e)
              ii += 1


              It prints out:



              # A
              # B
              # C
              # D
              # E
              # F


              While res value is:



              print(res) #=> [['A', 'B', 'C'], ['D', 'E', 'F']]





              share|improve this answer













              Option with while loop, accessing objects by index:



              steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

              i = 0
              ii = 0
              memo =
              res =
              while True:
              if i == len(steps): break
              e = steps[i][ii]
              if e in memo:
              res.append(memo)
              memo =
              ii = 0
              i += 1
              else:
              memo.append(e)
              print(e)
              ii += 1


              It prints out:



              # A
              # B
              # C
              # D
              # E
              # F


              While res value is:



              print(res) #=> [['A', 'B', 'C'], ['D', 'E', 'F']]






              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Jan 1 at 10:45









              iGianiGian

              4,4842625




              4,4842625

























                  5














                  steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

                  for step in steps:
                  last_item = ""

                  for item in step:
                  if item != last_item:
                  print(item)
                  last_item = item
                  else:
                  break


                  When you keep while true and break is encountered from inner for loop, control will never pass to outer for loop for getting next item




                  (['D', 'E', 'F', 'F', 'F'])




                  in outer list, creating infinite loop.






                  share|improve this answer






























                    5














                    steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

                    for step in steps:
                    last_item = ""

                    for item in step:
                    if item != last_item:
                    print(item)
                    last_item = item
                    else:
                    break


                    When you keep while true and break is encountered from inner for loop, control will never pass to outer for loop for getting next item




                    (['D', 'E', 'F', 'F', 'F'])




                    in outer list, creating infinite loop.






                    share|improve this answer




























                      5












                      5








                      5







                      steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

                      for step in steps:
                      last_item = ""

                      for item in step:
                      if item != last_item:
                      print(item)
                      last_item = item
                      else:
                      break


                      When you keep while true and break is encountered from inner for loop, control will never pass to outer for loop for getting next item




                      (['D', 'E', 'F', 'F', 'F'])




                      in outer list, creating infinite loop.






                      share|improve this answer















                      steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

                      for step in steps:
                      last_item = ""

                      for item in step:
                      if item != last_item:
                      print(item)
                      last_item = item
                      else:
                      break


                      When you keep while true and break is encountered from inner for loop, control will never pass to outer for loop for getting next item




                      (['D', 'E', 'F', 'F', 'F'])




                      in outer list, creating infinite loop.







                      share|improve this answer














                      share|improve this answer



                      share|improve this answer








                      edited Jan 1 at 10:30









                      Rajen Raiyarela

                      3,80031534




                      3,80031534










                      answered Jan 1 at 10:21









                      Nafees AnwarNafees Anwar

                      344115




                      344115























                          1














                          You do not need while True. Except for that part your code works as expected:



                          steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

                          for step in steps:

                          # while True:
                          last_item = ""

                          for item in step:
                          if item != last_item:
                          print(item)
                          last_item = item
                          else:
                          break


                          Output:



                          A
                          B
                          C
                          D
                          E
                          F





                          share|improve this answer




























                            1














                            You do not need while True. Except for that part your code works as expected:



                            steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

                            for step in steps:

                            # while True:
                            last_item = ""

                            for item in step:
                            if item != last_item:
                            print(item)
                            last_item = item
                            else:
                            break


                            Output:



                            A
                            B
                            C
                            D
                            E
                            F





                            share|improve this answer


























                              1












                              1








                              1







                              You do not need while True. Except for that part your code works as expected:



                              steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

                              for step in steps:

                              # while True:
                              last_item = ""

                              for item in step:
                              if item != last_item:
                              print(item)
                              last_item = item
                              else:
                              break


                              Output:



                              A
                              B
                              C
                              D
                              E
                              F





                              share|improve this answer













                              You do not need while True. Except for that part your code works as expected:



                              steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

                              for step in steps:

                              # while True:
                              last_item = ""

                              for item in step:
                              if item != last_item:
                              print(item)
                              last_item = item
                              else:
                              break


                              Output:



                              A
                              B
                              C
                              D
                              E
                              F






                              share|improve this answer












                              share|improve this answer



                              share|improve this answer










                              answered Jan 1 at 10:25









                              BlackBeardBlackBeard

                              5,45242640




                              5,45242640























                                  0














                                  Remove this while loop from your code. [break] below works in this loop. To achieve your desired output, [break] need to break the for loop above.



                                  steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

                                  for step in steps:

                                  # while True:
                                  last_item = ""

                                  for item in step:
                                  if item != last_item:
                                  print(item)
                                  last_item = item
                                  else:
                                  break





                                  share|improve this answer




























                                    0














                                    Remove this while loop from your code. [break] below works in this loop. To achieve your desired output, [break] need to break the for loop above.



                                    steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

                                    for step in steps:

                                    # while True:
                                    last_item = ""

                                    for item in step:
                                    if item != last_item:
                                    print(item)
                                    last_item = item
                                    else:
                                    break





                                    share|improve this answer


























                                      0












                                      0








                                      0







                                      Remove this while loop from your code. [break] below works in this loop. To achieve your desired output, [break] need to break the for loop above.



                                      steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

                                      for step in steps:

                                      # while True:
                                      last_item = ""

                                      for item in step:
                                      if item != last_item:
                                      print(item)
                                      last_item = item
                                      else:
                                      break





                                      share|improve this answer













                                      Remove this while loop from your code. [break] below works in this loop. To achieve your desired output, [break] need to break the for loop above.



                                      steps = [['A', 'B', 'C', 'C', 'C'], ['D', 'E', 'F', 'F', 'F']]

                                      for step in steps:

                                      # while True:
                                      last_item = ""

                                      for item in step:
                                      if item != last_item:
                                      print(item)
                                      last_item = item
                                      else:
                                      break






                                      share|improve this answer












                                      share|improve this answer



                                      share|improve this answer










                                      answered Jan 1 at 10:45









                                      Aravind KumarAravind Kumar

                                      11




                                      11






























                                          draft saved

                                          draft discarded




















































                                          Thanks for contributing an answer to Stack Overflow!


                                          • Please be sure to answer the question. Provide details and share your research!

                                          But avoid



                                          • Asking for help, clarification, or responding to other answers.

                                          • Making statements based on opinion; back them up with references or personal experience.


                                          To learn more, see our tips on writing great answers.




                                          draft saved


                                          draft discarded














                                          StackExchange.ready(
                                          function () {
                                          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53994639%2fbreaking-out-of-a-while-loop-when-hitting-a-duplicate%23new-answer', 'question_page');
                                          }
                                          );

                                          Post as a guest















                                          Required, but never shown





















































                                          Required, but never shown














                                          Required, but never shown












                                          Required, but never shown







                                          Required, but never shown

































                                          Required, but never shown














                                          Required, but never shown












                                          Required, but never shown







                                          Required, but never shown







                                          Popular posts from this blog

                                          MongoDB - Not Authorized To Execute Command

                                          in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

                                          How to fix TextFormField cause rebuild widget in Flutter