Обсуждения
for i in range (0, 20, ?):
print(i)
2 голосов
6 ответовWhere is print(i) in the output
0 голосов
1 ответ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 ответовАктуальное сегодня
Question
2 Votes
Wayss
0 Votes
fully dynamic arrays
1 Votes
I dont now that how to do js
2 Votes
Project subjection
0 Votes
Wishkit alternative for android
1 Votes
How to start in web dev?
0 Votes
Hi
0 Votes