Draw oval : Oval « 2D « Python






Draw oval

Draw oval

from Tkinter import *

canvas = Canvas(width=300, height=300, bg='white')   # 0,0 is top left corner
canvas.pack(expand=YES, fill=BOTH)                   # increases down, right

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

mainloop()
           
       








Related examples in the same category

1.Draw a Oval with fillDraw a Oval with fill
2.Draw oval using PythonDraw oval using Python