Обсуждения
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 ответовАктуальное сегодня
C pointers
1 Votes
Python
0 Votes
Guys help please
0 Votes
Slicing in python
1 Votes
Python question
1 Votes
Control flow
0 Votes
HTML
0 Votes
Front-end vs Full-stack
1 Votes