Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upCreate else_without_if.txt #211
Conversation
Most languages do not allow an else statement without an if. However, python allows the else statement to be executed without the if provided the loop before it has not been terminated by a break statement.


Most languages do not allow an else statement without an if.
However, python allows the else statement to be executed without the if provided the loop before it has not been terminated by a break statement.