Bird
Raised Fist0
Pythonprogramming~10 mins

While–else behavior in Python - Step-by-Step Execution

Choose your learning style10 modes available

Start learning this pattern below

Jump into concepts and practice - no test required

or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Concept Flow - While–else behavior
Start: Initialize condition
Check condition
Execute body
Update condition
Back to Check condition
The while loop runs as long as the condition is true. If it ends normally (condition false), the else block runs. If the loop exits early (break), else is skipped.
Execution Sample
Python
i = 0
while i < 3:
    print(i)
    i += 1
else:
    print('Done')
Counts from 0 to 2, then prints 'Done' after the loop finishes normally.
Execution Table
StepiCondition (i < 3)ActionOutput
10TruePrint 0, i = i + 10
21TruePrint 1, i = i + 11
32TruePrint 2, i = i + 12
43FalseExit loop, run elseDone
5--End-
💡 i reaches 3, condition 3 < 3 is False, loop ends normally, else block runs
Variable Tracker
VariableStartAfter 1After 2After 3Final
i01233
Key Moments - 2 Insights
Why does the else block run after the while loop?
Because the loop ended normally when the condition became False (see execution_table step 4). The else runs only if no break interrupts the loop.
What happens if we add a break inside the loop?
If break runs, the loop exits immediately and the else block does NOT run. This is because else runs only on normal loop completion.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution table, what is the value of i at step 3?
A2
B3
C1
D0
💡 Hint
Check the 'i' column at step 3 in the execution_table.
At which step does the condition become False and the else block runs?
AStep 2
BStep 4
CStep 3
DStep 5
💡 Hint
Look at the 'Condition' and 'Action' columns in execution_table for when condition is False and else runs.
If we add 'if i == 1: break' inside the loop, what happens to the else block?
AIt runs before the loop
BIt runs after the loop
CIt does not run
DIt runs twice
💡 Hint
Recall key_moments about break skipping the else block.
Concept Snapshot
while condition:
    # loop body
else:
    # runs if loop ends normally (no break)

- else runs only if while condition becomes False
- else skipped if break exits loop early
- useful for post-loop actions when no early exit
Full Transcript
This visual trace shows how a while loop with an else block works in Python. The loop runs while the condition is true, updating variable i each time. When i reaches 3, the condition becomes false, so the loop ends normally and the else block runs, printing 'Done'. If the loop had a break statement, the else block would not run. The variable tracker shows how i changes each step. The key moments clarify why else runs only on normal loop completion. The quiz questions help check understanding of the loop steps and else behavior.

Practice

(1/5)
1.

What happens to the else block in a while loop if the loop ends normally (without a break)?

easy
A. The else block runs before the loop starts.
B. The else block never runs.
C. The else block runs after the loop finishes all iterations.
D. The else block runs only if the loop has a break.

Solution

  1. Step 1: Understand the while-else structure

    The else block after a while loop runs only if the loop finishes all iterations without encountering a break.
  2. Step 2: Analyze loop ending conditions

    If the loop ends normally (condition becomes false), the else block executes. If a break occurs, it skips the else.
  3. Final Answer:

    The else block runs after the loop finishes all iterations. -> Option C
  4. Quick Check:

    while-else else runs if no break [OK]
Hint: Else runs only if while loop ends without break [OK]
Common Mistakes:
  • Thinking else runs always after while
  • Believing else runs only if break occurs
  • Confusing else with finally block
2.

Which of the following is the correct syntax for a while loop with an else block in Python?

?
easy
A. while condition: # code else # code
B. while condition: else: # code # code
C. while condition: # code else: # code
D. while condition: # code else: # code

Solution

  1. Step 1: Recall Python while-else syntax

    The else block must be aligned with the while, not indented inside it.
  2. Step 2: Check each option's indentation and keywords

    while condition: # code else: # code correctly places else: aligned with while and indents code blocks properly.
  3. Final Answer:

    while condition: # code else: # code -> Option D
  4. Quick Check:

    Else aligned with while, colon included [OK]
Hint: Else must align with while, not inside loop body [OK]
Common Mistakes:
  • Indenting else inside while block
  • Missing colon after else
  • Placing else before while
3.

What is the output of this code?

i = 0
while i < 3:
    print(i)
    i += 1
else:
    print('Done')
medium
A. 0 1 2
B. 0 1 2 Done
C. Done
D. 0 1 2 3 Done

Solution

  1. Step 1: Trace the while loop iterations

    Variable i starts at 0 and increments by 1 each loop until i < 3 is false. It prints 0, 1, 2.
  2. Step 2: Check else block execution

    Since the loop ends normally (i becomes 3, condition false), the else block runs and prints 'Done'.
  3. Final Answer:

    0 1 2 Done -> Option B
  4. Quick Check:

    Loop prints 0-2, else prints Done [OK]
Hint: Else runs after loop if no break, prints 'Done' [OK]
Common Mistakes:
  • Ignoring else block output
  • Expecting 3 to print inside loop
  • Thinking else runs only on break
4.

Find the error in this code snippet:

i = 0
while i < 5:
    if i == 3:
        break
    print(i)
    i += 1
else:
print('Finished')
medium
A. The else block is not indented properly.
B. The break statement is outside the loop.
C. The while condition is invalid.
D. The print statement inside the loop is missing parentheses.

Solution

  1. Step 1: Check indentation of else block

    The else block must be aligned with the while statement, but here it is not indented properly.
  2. Step 2: Verify other parts

    Break is inside the loop, while condition is valid, and print uses parentheses correctly.
  3. Final Answer:

    The else block is not indented properly. -> Option A
  4. Quick Check:

    Else must align with while, indentation error [OK]
Hint: Else must align with while, check indentation [OK]
Common Mistakes:
  • Misplacing else inside loop body
  • Confusing break placement
  • Ignoring indentation errors
5.

Consider this code:

n = 5
while n > 0:
    if n == 3:
        break
    print(n)
    n -= 1
else:
    print('Loop completed')

What will be the output and why?

hard
A. 5 4 Because break stops loop, else does not run.
B. 5 4 3 Loop completed Because else always runs.
C. 5 4 3 Because break is inside if, else runs anyway.
D. Loop completed Because else runs before loop.

Solution

  1. Step 1: Trace loop iterations and break

    n starts at 5, prints 5 and 4. When n == 3, break stops the loop immediately.
  2. Step 2: Understand else block behavior

    Because the loop was stopped by break, the else block does not run, so 'Loop completed' is not printed.
  3. Final Answer:

    5 4 Because break stops loop, else does not run. -> Option A
  4. Quick Check:

    Break skips else, so only 5 and 4 print [OK]
Hint: Break skips else; else runs only if no break [OK]
Common Mistakes:
  • Assuming else runs even after break
  • Printing 3 inside loop
  • Thinking else runs before loop