How can we use pygame on Google Colab? pygame 모듈 설치는 됩니다. !pip install pygame 설치 후 불러오는 것도 잘 됩니다. import pygame 하지만... 게임 화면이 만들어지지는 않습니다. from pygame.locals import * pygame.init() display_width = 600 display_height = 800 DISPLAY = pygame.display.set_mode((display_width, display_height)) pygame.display.set_caption("게임 제작") -------------------------------------------------------------------------..