Permukaan Pygame

# blitting a surface into another surface
screen.blit(my_image, (0, 0))
pygame.display.update()  # or pygame.display.flip()
Vast Vulture