▶ 전체코드 """ tetris.py - Copyright 2016 Kenichiro Tanaka """ import sys from math import sqrt from random import randint import pygame # 전역 변수 pygame.init() smallfont = pygame.font.SysFont(None, 36) largefont = pygame.font.SysFont(None, 72) BLACK = (0,0,0) pygame.key.set_repeat(30, 30) # 전체 게임판의 사이즈를 의미하는 SCREEN_WIDTH와 SCREEN_HEIGHT SCREEN_WIDTH = 600 SCREEN_HEIGHT = 600 screen = pygame.display.se..