资源简介
python 贪吃蛇小游戏源码
代码片段和文件信息
from Tkinter import *
import tkMessageBoxsys
from random import randint
class Grid(object):
def __init__(selfmaster=Nonewindow_width=800window_height=600grid_width=50offset=10):
self.height = window_height
self.width = window_width
self.grid_width = grid_width
self.offset = offset
self.grid_x = self.width/self.grid_width
self.grid_y = self.height/self.grid_width
self.bg = “#EBEBEB“
self.canvas = Canvas(master width=self.width+2*self.offset height=self.height+2*self.offset bg=self.bg)
self.canvas.pack()
self.grid_list()
def draw(self pos color):
x = pos[0]*self.grid_width + self.offset
y = pos[1]*self.grid_width + self.offset
self.canvas.create_rectangle(x y x+self
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4085 2016-07-09 14:36 snake.py
- 上一篇:PYTHON爬虫示例21345
- 下一篇:knn和贝叶斯算法 比较
相关资源
- 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核心编程pdf+源码
- python 爬虫(pyspider)
- python 微信机器人 源码
- python 采集指定网址的图片并保存到本
- android 多渠道打包(python)
- python 猜成语游戏
评论
共有 条评论