how to draw using tkinter code example
Example 1: tkinter draw squaer
canvas.create_rectangle(30, 10, 120, 80,
outline="#fb0", fill="#fb0")
Example 2: how to draw image in tkinter
from tkinter import *
from PIL import ImageTk, Image
root = Tk()
c = Canvas(root, width=500, height=500)
c.pack()
img = ImageTk.PhotoImage(Image.open(r"imagepath\imagename.extension"))
c.create_image(x, y, image=img, anchor=NW)