이미지 넣기제일 먼저 이미지가 필요하다.적당히 아무 이미지나 구해서 가상 환경 폴더에 img 폴더를 만든 다음 이미지를 넣자 import pygame, syssize = (800, 600)pd = pygame.displayscreen = pd.set_mode(size)pd.set_caption("모험")white = (255, 255, 255)black = (0, 0, 0)screen.fill(white)pd.flip()running = Trueimage = pygame.image.load('img\char.jpg')# 구한 이미지를 로드함imagecount = 0while running: for event in pygame.event.get(): if event.type == pyga..