FAQ: Learn Python: Loops - Continue

I have the exact same formatting and layout as the solution with zero differences and only get
17.

When I replace the code with the solution (which is identical) I get the ‘right answer’
Is this broken ???

the indents might be wrong!

excuse me i did all the work on continue, but can you please solve this problem?

ages = [12, 38, 34, 26, 21, 19, 67, 41, 17]

for age in ages:
if age < 21:
continue
print(age)

Great pun!
image

Isn’t skip would have been better instead of continue. It would have be more relatable