不贪吃蛇游戏
代码:
from tkinter import mainloop
import pygame
import time
import random
import sys
def show_score(choice, color, font, size):
# 创建字体对象 score_font
score_font = pygame.font.SysFont(font, size)
# 创建显示表面对象 core_surface
score_surface = score_font.render('defen : ' + str(score), True,
color)
# 为文本表面对象创建一个矩形对象
score_rect = score_surface.get_rect()
# 显示文字
game_window.blit(score_surface, score_rect)
def game_over():
# 创建字体对象 my_font