Python Report Final
Python Report Final
PROJECT REPORT
ON
MINI PROJECT
ENTITLED
“Stop-watch”
SUBMITTED BY
Desai krish T. (226090307020)
Khatsuriya bhavya B. (226090307056)
To
COMPUTER ENGINEERING DEPARTMENT
C U SHAH GOVT. POLYTECHNIC –SURENDRANAGAR
CERTIFICATE
This is to certify that the Mini Project entitled “______________________________” has been
Guides:
CERTIFICATE
This is to certify that the Mini Project entitled “______________________________” has been
Guides:
Hello, its desai krish and bhavya khatsuriya . it is project of stop watch. This is a simple
stopwatch application with a graphical user interface (GUI) implemented using the
Tkinter library. The primary purpose of the program is to create a functional
stopwatch that displays elapsed time in hours, minutes, and seconds. Users can interact
with the stopwatch through buttons to start, stop, and reset the timer.
Key Features:
Time Display:
The stopwatch utilizes a label to display the elapsed time in HH:MM:SS format.
The time is dynamically updated every second, providing accurate and real-time
information.
The program offers three main functionalities through buttons: Start, Stop, and Reset.
The "Start" button initiates the stopwatch, enabling the continuous update of the
elapsed time.
The "Stop" button pauses the stopwatch, freezing the displayed time.
The "Reset" button resets the stopwatch to its initial state, ready
User Interface:
The GUI is created using the Tkinter library, providing a simple and intuitive
interface.
The window is fixed in size to maintain a clean and compact design.
Working of Project:
1. Initialization:
3. Start Function:
4. Stop Function:
6. GUI Setup:
label['text']=display # Or label.config(text=display)
root = Tkinter.Tk()
root.title("Stopwatch")