俄罗斯方块
pygame库
import pygame
import random
pygame.init() #对pygame库进行初始化
box_size = 30 #小方格
box_width = 15 #小方格列数
box_height = 20 #小方格行数
width = box_size * box_width #游戏区域宽度
height = box_size * box_height #游戏区域高度
side_width = 200 #旁白区域宽度
screen_width = width + side_width #屏幕总宽度
white = (245,245,245) #rgb表白色
black = (0, 0, 0) #黑色
line_color= (139,125,107) #边线颜色 暗灰色
1