What does this program print?

from Control flow
Python 3.14 beginner 2 min

What does this program print?

Python
values = [2, 4, 7]

for value in values:
    if value % 2 == 0:
        continue
    if value > 10:
        break
else:
    print("complete")
Open in playground
Report an error