Published
- 1 min read
how to change windows icon tkinter
The solution for this is noted below
how to change windows icon tkinter
Solution
from tkinter import *
root = Tk()
photo = PhotoImage(file = "image.png")
root.iconphoto(False, photo)
Try other methods by searching on the site. That is if this doesn’t work