www.main.lv
Don't think just code it

2009-08-23 Python PyGame Tutorial Display Setting

First application and we opening window
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