pygame transparent background image code example
Example: how to set background color of an image to transparent in pygame
image = pygame.image.load("Your file location")
image.set_colorkey((0, 0, 0)) # If your bg color is black for the image
image = pygame.image.load("Your file location")
image.set_colorkey((0, 0, 0)) # If your bg color is black for the image