91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python怎么實現貪吃蛇游戲

發布時間:2021-12-17 17:33:50 來源:億速云 閱讀:175 作者:iii 欄目:大數據

本篇內容介紹了“Python怎么實現貪吃蛇游戲”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

游戲動圖:

Python怎么實現貪吃蛇游戲

源碼

from turtle import *
from random import randrange
from freegames import square, vector

food = vector(0, 0)
snake = [vector(10, 0)]
aim = vector(0, -10)

def change(x, y):
   "Change snake direction."
   aim.x = x
   aim.y = y

def inside(head):
   "Return True if head inside boundaries."
   return -200 < head.x < 190 and -200 < head.y < 190

def move():
   "Move snake forward one segment."
   head = snake[-1].copy()
   head.move(aim)

   if not inside(head) or head in snake:
       square(head.x, head.y, 9, 'red')
       update()
       return

   snake.append(head)

   if head == food:
       print('Snake:', len(snake))
       food.x = randrange(-15, 15) * 10
       food.y = randrange(-15, 15) * 10
   else:
       snake.pop(0)

   clear()

   for body in snake:
       square(body.x, body.y, 9, 'black')

   square(food.x, food.y, 9, 'green')
   update()
   ontimer(move, 100)

setup(420, 420, 370, 0)
hideturtle()
tracer(False)
listen()
onkey(lambda: change(10, 0), 'Right')
onkey(lambda: change(-10, 0), 'Left')
onkey(lambda: change(0, 10), 'Up')
onkey(lambda: change(0, -10), 'Down')
move()
done()
     

運行

復制上述代碼到一個 py 為后綴的文件,命名 snake.py.

在文件所在目錄打開控制臺:運行pip install freegames,然后運行python snake.py

“Python怎么實現貪吃蛇游戲”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乌拉特前旗| 九龙城区| 新竹县| 东莞市| 大田县| 石城县| 正阳县| 连江县| 三门县| 东台市| 新竹市| 犍为县| 枞阳县| 聂拉木县| 祁阳县| 洞头县| 田东县| 宁化县| 阳西县| 银川市| 突泉县| 高要市| 乐至县| 台南县| 社会| 藁城市| 浏阳市| 永州市| 老河口市| 浦北县| 永昌县| 高雄市| 池州市| 垫江县| 双桥区| 古田县| 皋兰县| 崇州市| 万全县| 紫金县| 西青区|