作品说明
import turtle
turtle.addshape("刺客1.gif")
cike=turtle.Turtle()
cike.shape('刺客1.gif')
cike.penup()
def Qian():
x=cike.xcor()
y=cike.ycor()
cike.goto(x,y+10)
def Hou():
x=cike.xcor()
y=cike.ycor()
cike.goto(x,y-10)
def Zuo():
x=cike.xcor()
y=cike.ycor()
cike.goto(x-10,y)
def You():
x=cike.xcor()
y=cike.ycor()
cike.goto(x+10,y)
操作说明
turtle.listen()
turtle.onkeypress(Qian,'w')
turtle.onkeypress(Hou,'s')
turtle.onkeypress(Zuo,'a')
turtle.onkeypress(You,'d')