Commit 1526389e by BellCodeEditor

save project

parent 218568db
Showing with 1 additions and 3 deletions
import pygame import pygame
import random
from pygame import locals from pygame import locals
# 初始化pygame,为使用硬件做准备 # 初始化pygame,为使用硬件做准备
...@@ -25,7 +24,6 @@ apple_y=300 ...@@ -25,7 +24,6 @@ apple_y=300
setheading = "right" setheading = "right"
snake_head = right snake_head = right
while True: while True:
for event in pygame.event.get(): for event in pygame.event.get():
if event.type == locals.QUIT: if event.type == locals.QUIT:
...@@ -57,7 +55,7 @@ while True: ...@@ -57,7 +55,7 @@ while True:
position.append((x, y)) position.append((x, y))
if x ==apple_x and y==apple_y: if x ==apple_x and y==apple_y:
apple_x=random.randint(0,660) apple_x=random.randint(0,660)
apple_y=random.randint(0.480) apple_y=random.randint(0,480)
position.pop(0) position.pop(0)
# 将背景图画上去 # 将背景图画上去
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment