91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 4KB
    文件類型: .py
    金幣: 1
    下載: 0 次
    發(fā)布日期: 2021-01-02
  • 語言: Python
  • 標簽: Python??貪吃蛇??

資源簡介

Python學習時寫的貪吃蛇代碼,帶界面UI,短小精悍,供大家參考學習

資源截圖

代碼片段和文件信息

import?tkinter?as?tk?
import?random
import?threading
import?time

class?snake:
????TARGET_LEFT?=?0
????TARGET_RIGHT?=?1
????TARGET_UP?=?2
????TARGET_DOWN?=?3
????def?__init__(self?cvs?worldWidth?=?500?worldHeight?=?400):
????????self.worldWidth?=?worldWidth
????????self.worldHeight?=?worldHeight
????????self.x?=?worldWidth?/?2
????????self.y?=?worldHeight?/?2
????????self.cvs?=?cvs
????????self.data?=?[(self.x?self.y)]
????????self.foodPool?=?[]
????????self.curFood?=?(0?0)
????????self.firstInitFoodPool()
????????self.firstDraw()
????????self.target?=?snake.TARGET_RIGHT
????????self.cvs.focus_set()
????????self.cvs.bind(““?self.change)
????????self.isalive?=?True
????
????def?firstInitFoodPool(self):
????????for?i?in?range(0?self.worldWidth?-?10?10)

評論

共有 條評論