I am just beginning to dabble in Python, and have started to go through the chapters on learnpython.org. In the \'Loops\' chapter, I have solved the challenge with the follo
That's what else and elif are for:
else
elif
for x in numbers: if x == 237: break elif x % 2 == 0: print x