Which statement ends the current iteration and continues with the next one? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 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?

23rd Apr 2020, 1:53 PM
Thank You
2 Answers
+ 1
Continue Ex. if i == 3 continue
23rd Apr 2020, 1:54 PM
Prabhakar Rai
Prabhakar Rai - avatar
+ 2
number = int(input()) while number: print(number) if number <= 0: continue number -= 1 I hope, it will help! 😊👍
23rd Apr 2020, 3:15 PM
F L a Z z Y
F L a Z z Y - avatar