import pygame # Homework: set a custom window title. # 1. Find the pygame.display.set_caption() call below. # 2. Change the string to your own title — your name, a game name, anything. # 3. Run the program and check the title bar. pygame.init() screen = pygame.display.set_mode((640, 480)) # TODO: change this to your own title pygame.display.set_caption("Change Me") running = True while running: for event in pygame.event.get(): if event.type == pygame.QUIT: running = False screen.fill((20, 60, 100)) pygame.display.flip() pygame.quit()