Обсуждения
Javascript restart prog
6 голосов
2 ответовHow do people hack?
-3 голосов
5 ответовKnow few tricks on hacking!!!!?
5 голосов
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 ответовHow this code can be re-writed?
0 голосов
1 ответBad practices?
0 голосов
1 ответАктуальное сегодня
Sticky position
2 Votes
Help please?
3 Votes
Online voting system
2 Votes
What is that z for
0 Votes
Suggestions needed
4 Votes
SQL practice
2 Votes
Ejercicio Pytho
0 Votes
Game development
0 Votes