HOME/Articles/

tkinter example icon (snippet)

Article Outline

Python tkinter (gui) example 'icon'

icon

Python tkinter example: icon

from tkinter import *

root = Tk()

icon = PhotoImage(file="mario.png")
lbl = Label(root, text="Welcome", image=icon)
lbl.pack()

root.mainloop()