Draw shape border : Shape Border « 2D « Python






Draw shape border

Draw shape border

from Tkinter import *

canvas = Canvas(width=300, height=300, bg='white')
canvas.pack(expand=YES, fill=BOTH)                

canvas.create_oval(10, 10, 200, 200, width=20, fill='blue')

mainloop()
           
       








Related examples in the same category

1.Rectangle Border width