Skip to content

Instantly share code, notes, and snippets.

@hortonew
Last active December 10, 2015 23:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hortonew/4507011 to your computer and use it in GitHub Desktop.
Save hortonew/4507011 to your computer and use it in GitHub Desktop.
Pygame - Clear Screen
import pygame
pygame.init()
screen = pygame.display.set_mode((800,600))
if __name__ == "__main__":
while True:
screen.fill((0,0,0))
pygame.display.flip()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment