I am new to Python. I use IDLE (Using python 2.7) on my raspberry pi. I've been unable to compile the latest program from my tutorial, a cat and mouse game. I get the following error:
Traceback (most recent call last) :
File "/home/pi/pyth-prog/Python_Cat_and-mouse.py", line 47, in <module> window.onkeypress(up, "Up")
AttributeError: '__Screen' object has no attribute 'onkeypress'
My code looks like this:
import turtle
import time
boxsize =200
caught= False
score= 0
#function that are called keypresses
def up():
mouse.forward(10)
checkbound()
def left():
mouse.left(45)
def right():
mouse.right(45)
def back():
mouse.back(10)
def quitTurtles():
window.bye()
#stop the ;ouse fro; leaving the square set by box sizes
def checkbound():
global boxsize
if mouse.xcor() > boxsize:
mouse.goto(boxsize, mouse.ycor())
if mouse.xcor() < -boxsize:
mouse.goto(-boxsize, mouse.ycor())
if mouse.ycor() > boxsize:
mouse.goto(mouse.xcor(), boxsize)
if mouse.ycor < -boxsize:
mouse.goto(mouse.xcor(), -boxsize)
#Set up screen
window=turtle.Screen()
mouse=turtle.Turtle()
cat=turtle.Turtle()
mouse.penup()
mouse.penup()
mouse.goto(100, 100)
#add key listeners
window.onkeypress(up, "Up")
window.onkeypress(left, "Left")
window.onkeypress(right, "Right")
window.onkeypress(back, "Down")
window.onkeypress(quitTurtles, "Escape")
difficulty=window.numinput("Difficulty", "Enter a difficulty from easy (1), for hard (5) ", minval=1, maxval=5)
window.listen()
#main loop
#note how it changes with difficulty
while not caught:
cat.setheading(cat.towards(mouse))
cat.forward(8+difficulty)
score=score+1
if cat.distance(mouse) < 5:
caught=True
time.sleep(0.2-(0.01*difficulty))
window.textinput("GAME OVER", "Well done. You scored:"+ str(score*difficulty))
window.bye()
The turtle.py for Python 2.7 only defines
onkey()
-- theonkeypress()
variant was added in Python 3 (as was a synonym foronkey()
calledonkeyrelease()
)Short answer, try changing
onkeypress()
toonkey()
.Once you get past that hurdle,
numinput()
andtextinput()
are also Python 3:so they may need to be dealt with too.