import pygame pygame.init() screen = pygame.display.set_mode([600,900]) screen.fill([0,0,0]) pygame.display.flip() font = pygame.font.Font(None, 50) smallfont = pygame.font.Font(None, 30) word = "Hello" screentext = font.render(word, True, [30,150,30], [0,0,0]) screen.blit(screentext, [100,100]) pygame.display.flip() raw_input("Press ENTER to close the graphics window") pygame.quit()