Обсуждения
Django from Solo Learn
1 голос
3 ответовThe “If” is confusing.
2 голосов
5 ответовValid codes to surpass error?
0 голосов
1 ответCan't understand the output.
0 голосов
2 ответовGoing further with learning
2 голосов
2 ответовIn 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 голос
3 ответовThe innermost
3 голосов
4 ответовАктуальное сегодня
Activities on sololearn
1 Votes
What is problem in this code
0 Votes
playground input
0 Votes
Html issue
1 Votes
Software developer
0 Votes
How I can use div
0 Votes
TIPS From Veterans
1 Votes
Playground input
0 Votes