Draw Rectangle : Rectangle « 2D « Python






Draw Rectangle

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

1.Draw rectangle with filled colorDraw rectangle with filled color