on tap canvas tkinter code example
Example 1: tkinter draw squaer
canvas.create_rectangle(30, 10, 120, 80,
outline="#fb0", fill="#fb0")
Example 2: canvas.create_oval parameters
id = C.create_oval ( x0, y0, x1, y1, option, ... )
canvas.create_rectangle(30, 10, 120, 80,
outline="#fb0", fill="#fb0")
id = C.create_oval ( x0, y0, x1, y1, option, ... )