#Python has a for...else construct, else is reached if nothing breaks the for loop Check it out!
>>> for i in range(10): ... pass ... else: ... print('reached') ... reached