# Else statement is printed if the loop in excecuted successfully. If the loop breaks at some point, it will not go through Else statement. Also, it doesn't work for endless loops.
The else block of a loop runs only if the loop finishes without a break. If a break occurs, the else block is skipped. This is one of the most misunderstood features in Python.