Draw Rectangle
from Tkinter import *
root = Tk()
root.title('Canvas')
canvas = Canvas(root, width =400, height=400)
canvas.create_rectangle(205,10,300,105, outline='white', fill='gray50')
canvas.pack()
root.mainloop()
Related examples in the same category