Python cara menambahkan gambar ke label dengan tkinter

# python import tkinter
from tkinter import *
# creating a window
root = Tk() 
root.geometry("500x500") # sets the width of a window
img = PhotoImage(file="info.png") # you need to have a real file in the folder
# you are working with
eg = Label(root, image=img)
# creats a program to show the window
root.mainloop()
Prickly Plover