Breaking out of a while loop when hitting a duplicate
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
add a comment |
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
Can you have a set of seen elements and the print only if not inseen
?
– Daniel Mesejo
Jan 1 at 10:18
2
Commentwhile 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 outsidefor step in steps:
then it seems to work as expected.
– Ari Cooper-Davis
Jan 1 at 10:20
add a comment |
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
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
python
asked Jan 1 at 10:14


DIGSUMDIGSUM
62851626
62851626
Can you have a set of seen elements and the print only if not inseen
?
– Daniel Mesejo
Jan 1 at 10:18
2
Commentwhile 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 outsidefor step in steps:
then it seems to work as expected.
– Ari Cooper-Davis
Jan 1 at 10:20
add a comment |
Can you have a set of seen elements and the print only if not inseen
?
– Daniel Mesejo
Jan 1 at 10:18
2
Commentwhile 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 outsidefor 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
add a comment |
4 Answers
4
active
oldest
votes
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']]
add a comment |
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.
add a comment |
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
add a comment |
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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']]
add a comment |
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']]
add a comment |
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']]
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']]
answered Jan 1 at 10:45


iGianiGian
4,4842625
4,4842625
add a comment |
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
edited Jan 1 at 10:30


Rajen Raiyarela
3,80031534
3,80031534
answered Jan 1 at 10:21
Nafees AnwarNafees Anwar
344115
344115
add a comment |
add a comment |
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
add a comment |
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
add a comment |
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
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
answered Jan 1 at 10:25


BlackBeardBlackBeard
5,45242640
5,45242640
add a comment |
add a comment |
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
add a comment |
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
add a comment |
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
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
answered Jan 1 at 10:45


Aravind KumarAravind Kumar
11
11
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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