Как установить цвет фона изображения для прозрачного в пигаме

image = pygame.image.load("Your file location")
image.set_colorkey((0, 0, 0))  # If your bg color is black for the image
Relieved Rattlesnake