Pygame sceen.fill() not filling up the color properly
For Blue color, you should use 255
as the third element in the tuple, not 1
.
Example -
while running:
event = pygame.event.poll()
if event.type == pygame.QUIT:
running=0
screen.fill((0,0,255))
pygame.display.flip()