- 2
Which statement ends the current iteration and continues with the next one?
What is answer for this question. If someone know, can you please explain?
2 Answers
+ 1
Continue
Ex.
if i == 3
continue
+ 2
number = int(input())
while number:
print(number)
if number <= 0:
continue
number -= 1
I hope, it will help! đđ