Python/내용 정리
심심풀이 게임
import pygameimport sysimport randomimport time# Pygame 초기화pygame.init()# 화면 크기 설정WIDTH, HEIGHT = 800, 600screen = pygame.display.set_mode((WIDTH, HEIGHT))pygame.display.set_caption('Avoid the Red Balls')# 색상 정의WHITE = (255, 255, 255)BLACK = (0, 0, 0)RED = (255, 0, 0)ORANGE = (255, 165, 0)YELLOW = (255, 255, 0)# 폰트 설정font = pygame.font.Font(None, 74)small_font = pygame.font.Font(None, 36)# 플레이어 ..
2024. 8. 4. 14:29