Skip to content

Ansarme/Ansar29

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 

Repository files navigation

Ansar29

" This is my first CI/CD "

Digitalclock in .py

from tkinter import Label, Tk import time app_window = Tk() app_window.title("Digital Clock") app_window.geometry("420x150") app_window.resizable(1,1)

text_font= ("Curlz MT", 68, 'bold') background = "#f2e750" foreground= "#363529" border_width = 25

label = Label(app_window, font=text_font, bg=background, fg=foreground, bd=border_width) label.grid(row=0, column=1)

def digital_clock(): time_live = time.strftime("%H:%M:%S") label.config(text=time_live) label.after(200, digital_clock)

digital_clock() app_window.mainloop()

About

This is first repository

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published