Comment changer l'icône Windows tkinter
from tkinter import *
root = Tk()
photo = PhotoImage(file = "image.png")
root.iconphoto(False, photo)
Clever Caribou
from tkinter import *
root = Tk()
photo = PhotoImage(file = "image.png")
root.iconphoto(False, photo)