Python Editor

Showing posts with label Python | Lesson 2 | While Continue Statement. Show all posts
Showing posts with label Python | Lesson 2 | While Continue Statement. Show all posts

Python | Lesson 2 | While Continue Statement


# Continue stops the current iteration and will continue next iteration
a = 0
while a < 16:
  print(a)
  a += 1
  if(a == 5):
    continue
  print(a)