Joined
Last Seen
0 Reputation Points
100% Quality Score
- Upvotes Received
- 2
- Posts with Upvotes
- 1
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
0 Endorsements
Ranked #107.69K
1 Posted Topic
I just wrote a version of myself and it's working just fine for me import time from tkinter import * top=Tk() c=Label(top,bg="green") c.grid(row="0",column="0") def ck(): a = time.localtime(time.time()) c.configure(text="%s:%s:%s" % (a.tm_hour, a.tm_min, a.tm_sec)) c.after(1000,ck()) ck() top.mainloop()
The End.