tkinter simple background image code example
Example: background image in python
om tkinter import *
from PIL import ImageTk
canvas = Canvas(width=600, height=800, bg='blue')
canvas.pack(expand=YES, fill=BOTH)
image = ImageTk.PhotoImage(file="File route")
canvas.create_image(10, 10, image=image, anchor=NW)
mainloop()