Display Images using Lable | python Tkinter GUI tutorial

 Display Images using Lable | python Tkinter GUI tutorial



from tkinter import *

a_root = Tk()

a_root.geometry("790x499")

photo = PhotoImage(file="6.png")
new = Label(image=photo)
new.pack()

a_root.mainloop()