|
| 1 | +# Countdown Clock and Timer |
| 2 | +## Description |
| 3 | +A simple timer that can be used to track runtime. The purpose of this is to provide a simple, and standard, way of tracking runtime. |
| 4 | +- This is very useful when testing implementations, and helpful when tracking the progress of longer-running programs. |
| 5 | +- The app will notify the user that the time has ended. |
| 6 | + |
| 7 | +### Language |
| 8 | +- [X] Python |
| 9 | + |
| 10 | +### Checklist |
| 11 | +Name | About |
| 12 | +:------------------ | :------------------ |
| 13 | +Countdown clock and timer | Shows the current time and timer according to the user input. |
| 14 | + |
| 15 | +### Usage |
| 16 | +To access the `timer`, this application imports the following modules. |
| 17 | +```python |
| 18 | +import os |
| 19 | +import time |
| 20 | +``` |
| 21 | + |
| 22 | +### Instructions to run this application |
| 23 | + |
| 24 | + 1. Download and Run the __countdown_clock_and_timer.py__ |
| 25 | + 2. Set the countdown time. |
| 26 | + 3. Enter the hours, minutes and seconds . |
| 27 | + 4. Timer will be set according to the given input by the user. |
| 28 | + 5. It will show the countdown time and display it when the time gets over. |
| 29 | + |
| 30 | +##### Example Output |
| 31 | +Output will be shown like that for the three seconds - |
| 32 | +``` |
| 33 | +00:00:03 |
| 34 | +00:00:02 |
| 35 | +00:00:01 |
| 36 | +00:00:00 |
| 37 | +'Time is over' |
| 38 | +``` |
0 commit comments