1. 실행 코드

import pygame as pg

pg.init()

화면가로길이 = 600
화면세로길이 = 800

화면 = pg.display.set_mode((화면가로길이, 화면세로길이))

while True:
    for 이벤트 in pg.event.get():
        if 이벤트.type == pg.QUIT:
            quit()

한글변수로 인해 인코딩 오류가 난다면 아래 코드를 맨 윗줄에 추가해주세요!

# -*- coding: utf-8 -*-

2. 상세내용

import pygame as pg

Pygame Front Page - pygame v2.0.0.dev15 documentation

pg.init()

화면가로길이 = 600
화면세로길이 = 800

화면 = pg.display.set_mode((화면가로길이, 화면세로길이))
while True:
    for 이벤트 in pg.event.get():
        if 이벤트.type == pg.QUIT:
            quit()

3. 실행 화면