add icon to windows tkinter code example
Example 1: how to add icon to tkinter window
root.iconbitmap('icon.ico')
Example 2: root.iconbitmap
import tkinter as tk
root = tk.Tk()
root.tk.call('wm', 'iconphoto', root._w, tk.PhotoImage(file='/path/to/ico/icon.png')
root.mainloop()