Found this weird control flow option in Python where you can use else clause in a for or while loop and it executes, if the loop finishes without executing the break.
letters = ['a', 'b', 'c']
looking_for = 'a'
for letter in letters:
if letter == looking_for:
print('Found the letter!')
break
else:
print("Didn't find the letter.")
https://docs.python.org/3/tutorial/controlflow.html#else-clauses-on-loops#Python #Loop #Else