Skip to content

Commit a91a2f2

Browse files
Create Readme.md
1 parent a6c875d commit a91a2f2

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

Digital Clock/Readme.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Digital Clock Using Python
2+
3+
This is a simple digital clock built using Python.
4+
5+
6+
Digital clock uses digits to display the time in a digital format. Both 12 and 24 hour formats are possible. In this code, we are using a 24 hour format.
7+
8+
9+
![Screenshot (192)](https://user-images.githubusercontent.com/109059571/193408779-3d9e1874-5cb3-40fc-8f8a-82711e579fc7.png)
10+
11+
12+
For this digital clock, we need two different python modules viz Tkinter and Time.
13+
14+
- ### Time Module
15+
16+
Time module comes with Python. There is no need to install it manually.
17+
18+
- ### Tkinter Module
19+
20+
Tkinter module has to be installed manually by using pip package manager. Use the following pip command:
21+
22+
```
23+
pip install tkinter
24+
```
25+
26+
We will need to import both these modules on our python code.
27+

0 commit comments

Comments
 (0)