Countdown Timer

Python21 lines· A simple console countdown timer: enter a number of seconds and it counts down in MM:SS format, printing "Time Up" when finished.
Original project by @vk0812 — view source on GitHub
Ready when you are
README· what to build

Countdown Timer

A simple console countdown timer: enter a number of seconds and it counts down in MM:SS format, printing "Time Up" when finished.

Example

Enter the time in seconds: 10
00:10
00:09
00:08
...
00:01
Time Up

How to run on localhost

python countdown.py

Dependencies

Standard library only (time).

countdown.py· Python 3.x
26 lines
Console· terminal