A simple digital clock built using Python (Tkinter).
    It displays the current time (HH:MM:SS) and date in real-time, updating every second.
  
- 🕰️ Real-time clock with hours, minutes, and seconds
 - 📅 Displays the current date
 - 🖥️ Built with Tkinter
 
- Language: Python
 - GUI Framework: Tkinter
 - Module Used: time (strftime)
 
    The clock uses Python’s strftime() function to get the current time and date.
    The display updates every 1000 milliseconds (1 second) using Tkinter’s after() method.
  
# 1️⃣ Clone the repository git clone https://github.com/your-username/digital-clock.py.gitcd digital-clock
python digital-clock.py
You can easily customize:
- Font style and size
 - Background and foreground colors
 - Date/time format (e.g., 12-hour or 24-hour)
 
Example:
label = tk.Label(root, font=('Arial', 60, 'bold'),
                 background='#222', foreground='lime')
  
  
    Dinesh Singh Dhami
    📧 dineshsingh@nast.edu.np
    💻 GitHub Profile
  
