pygame set game icon 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: how to make a custom icon for pygame
gameIcon = pygame.image.load('carIcon.png')
pygame.display.set_icon(gameIcon)