.fill pygame code example
Example 1: .fill pygame
while running:
event = pygame.event.poll()
if event.type == pygame.QUIT:
running=0
screen.fill((0,0,255))
pygame.display.flip()
Example 2: pygame surface
size = width, height = (32, 32)
empty_surface = pygame.Surface(size)