Q&A Discussions
Django from Solo Learn
1 Vote
3 AnswersThe “If” is confusing.
2 Votes
5 AnswersGoing further with learning
2 Votes
2 AnswersIn the continue Loop -
i = 0
while True:
i = i +1
if i == 2:
print("Skipping 2")
continue
if i == 5:
print("Breaking")
break
print(i)
print("Finished")
It shows the output being
"1
Skipping 2
3
4
Breaking
Finished"
Why are the last three lines not
"Breaking
5
Finished"
Where it shows print(i) after break?
1 Vote
3 AnswersThe innermost
3 Votes
4 AnswersHot today
Help me understand
1 Votes
Ethical Hacking Course
3 Votes
Please help, I'm lost
0 Votes
Html-queries
1 Votes
Py
0 Votes
Pygame learn
2 Votes
How to make a chatbot
1 Votes
Develop mode on smartphone
1 Votes