draw polygons on canvas python code example
Example 1: how to draw polygon in tkinter
from tkinter import *
root = Tk()
c = Canvas(root)
c.pack()
points = [x1,y1, x2,y2, xn,yn]
c.create_polygon(points)
root.mainloop()
Example 2: canvas.create_oval parameters
id = C.create_oval ( x0, y0, x1, y1, option, ... )