Draw a Oval with fill : Oval « 2D « Python






Draw a Oval with fill

Draw a Oval with fill

from Tkinter import *

root = Tk()

root.title('Canvas')

canvas = Canvas(root, width =400, height=400)
canvas.create_oval(10,10,100,100, fill='gray90')

canvas.pack()
root.mainloop()


           
       








Related examples in the same category

1.Draw oval using PythonDraw oval using Python
2.Draw ovalDraw oval