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