← back to unit
Medium
# loops
Rocket Launch Countdown
Mission control needs a countdown list before liftoff! 🚀
You're given n. Build a list counting DOWN from n to 1, then print it. For example, 5 → print [5, 4, 3, 2, 1].
💡 need a hint?
loop-countdown-liftoff.py🔒 given lines are locked — write your code in between
loading...