import pygame from random import * def setup(level): # 레벨에 맞게 설정 global display_time display_time = 5 - (level // 3) # 숫자를 얼마의 시간동안 보여줄지 display_time = max(display_time, 1) # 1초 미만이면 1초로 처리 number_count = (level // 3) + 5 number_count = min(number_count, 20) # 최대수가 20이 되게 설정 shuffle_grid(number_count) # grid 형태로 숫자를 랜덤 배치 def shuffle_grid(number_count): rows = 5 columns = 9 cell_size = 130 # 각 G..