rendered paste body# Copied down first by copy paste, then by hand
from Tkinter import *
import time
root = Tk()
time1 = ''
clock = Label(root,font = ('georgia', 60, 'bold', 'italic'), bg='light yellow') # Colors (that I know of) - white,black,lavender,light green, dark green, green, blue, light blue, dark blue, purple, pink, red, yellow, orange, and light yellow. Fonts (that i know of) - Georgia, Times, and Papyrus
clock.pack(fill=BOTH, expand=1)
def tick():
global time1
time2 = time.strftime('%H:%M:%S') # Probably for Hours:Minutes:Seconds
if time2 != time1:
time1 = time2
clock.config(text=time2)
clock.after(200,tick)
tick()
root.mainloop()
# http://www.daniweb.com/software-development/python/code/216785 #