Understand why programs repeat instructions and what controls repetition.
Without a loop, displaying the same word three times requires three copied instructions:
print("Hello")
print("Hello")
print("Hello")
Line-by-line explanation- Each line displays the same word once.
- The instruction is copied three times.
- A loop will express this repetition more clearly.