- 게임 화면 세팅 import pygame import sys from time import sleep BLACK = (0, 0, 0) padwidth = 480 padheight = 640 def initgame(): global gamepad, clock pygame.init() gamepad = pygame.display.set_mode((padwidth, padheight)) #1-게임화면설정 pygame.display.set_caption('BUNNY & FRIENDS.py') #1-게임 이름 clock = pygame.time.Clock() def rungame(): global gamepad, clock ongame = False while not ongame: for event in py..