资源简介
代码片段和文件信息
import random
import sys
import time
import pygame
from pygame.locals import *
from collections import deque
SCREEN_WIDTH = 600
SCREEN_HEIGHT = 480
SIZE = 20
def print_text(screen font x y text fcolor=(255 255 255)):
imgText = font.render(text True fcolor)
screen.blit(imgText (x y))
def main():
pygame.init()
screen = pygame.display.set_mode((SCREEN_WIDTH SCREEN_HEIGHT))
pygame.display.set_caption(‘贪吃蛇‘)
light = (100 100 100) # 蛇的颜色
dark = (200 200 200) # 食物颜色
font1 = pygame.font.SysFont(‘SimHei‘ 24) # 得分的字体
font2 = pygame.font.Font(None 72) # GAME OVER 的字体
red = (200 30 30) # GAME OVER 的字体颜色
fwidth fheight = font2.size(‘GAME OVER‘)
line_width = 1
- 上一篇:think-python 第二版中文版
- 下一篇:机器学习经典算法
相关资源
- python一个打砖块的小游戏
- 贪吃蛇游戏
- 学员管理系统源码
- 通过GUI页面实现猜数游戏
- pygame贪吃蛇
- 唐僧大战白骨精(源码)
- python实现 图书管理系统源码
- python推箱子 游戏素材
- python批量图片(pysnooper)
- Python开发的24点游戏
- python 贪吃蛇 游戏
- python 贪吃蛇 小游戏源码
- 五子棋游戏源码(python实现)
- Pygame游戏源代码:中国象棋
- CPU指定进程监测工具含源码
- 《Python Qt GUI快速编程 PyQt编程指南》
- python制作象棋程序源码(pygame)
- pyqt5俄罗斯方块 源码
- pyqt5图书管理系统源码+安装说明+数据
- python双人五子棋 游戏原码
- 深度学习算法实践源码
- python撞击球游戏
- python 整站源码
- python 贪吃蛇小游戏源码
- python 叶子分类器 算法
- python教程:Python核心编程pdf+源码
- python 爬虫(pyspider)
- python 微信机器人 源码
- python 采集指定网址的图片并保存到本
- android 多渠道打包(python)
评论
共有 条评论