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.
- This is very useful when testing implementations, and helpful when tracking the progress of longer-running programs.
- The app will notify the user that the time has ended.
- Python
Name | About |
---|---|
Countdown clock and timer | Shows the current time and timer according to the user input. |
To access the timer
, this application imports the following modules.
import os
import time
- Download and Run the countdown_clock_and_timer.py
- Set the countdown time.
- Enter the hours, minutes and seconds .
- Timer will be set according to the given input by the user.
- It will show the countdown time and display it when the time gets over.
Output will be shown like that for the three seconds -
00:00:03
00:00:02
00:00:01
00:00:00
'Time is over'