# Repeat prints to suggest movement (clear screen in full projects)
import time

for step in range(3):
    print("The owl flies" + "." * (step + 1))
    time.sleep(0.5)   # pause half a second between frames
