screen = pygame.display.set_mode( (width_of_window ,height_of_window ) )
In future we will use screen for drawing.
Also there possible make full screen with value pygame.FULLSCREEN
it looks like:
pygame.display.set_mode( (width,height), pygame.FULLSCREEN )
Tutorial Source