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 Scripts with Example Source Code in same category :
-
|
|