30-Days-Of-Python
30-Days-Of-Python copied to clipboard
Exercise day 10 correction
There is an error in the example code in Day 10 exercise, Break and Continue - Part 1
count = 0
while count < 5:
if count == 3:
continue
print(count)
count = count + 1
The while loop shown above is an endless loop. It will never print number 4.
For me it print out the numbers 0, 1, and 2.