set icon pygame code example
Example 1: how to set the icon of the window in pygame
icon = pygame.image.load('icon.png')
pygame.display.set_icon(icon)
Example 2: pygame change icon
import pygame
win = pygame.display.set_mode((500, 500))
pygame.display.set_caption('Hello World')
icon = pygame.image.load("<< <<image_Nmae>>.<<extension>> >>")
pygame.display.set_icon(icon)