Adriana, miembro de este gran equipo de trabajo, nos ha hecho el favor de crear este tutorial ya que conoce a la perfección dicho tema.
Ejemplo: movimiento de tortuga pitón
import turtle
wn = turtle.Screen()
wn.setup(width=700,height=400)
wn.title("Python Turtle Movement")defplayerUp():
player.sety(player.ycor()+10)defplayerDown():
player.sety(player.ycor()-10)defplayerRight():
player.setx(player.xcor()+10)defplayerLeft():
player.setx(player.xcor()-10)
player = turtle.Turtle()
player.speed(0)#this will make your player created instantly
player.shape("square")#set player shape
player.color("red")#set player color
player.penup()#prevent drawing lines
player.goto(0,0)#set player location
wn.onkeypress(playerUp,"w")#function, key
wn.onkeypress(playerDown,"s")
wn.onkeypress(playerRight,"d")
wn.onkeypress(playerLeft,"a")#update the windowwhileTrue:
wn.update()
Si haces scroll puedes encontrar las interpretaciones de otros sys admins, tú asimismo tienes la libertad de dejar el tuyo si te gusta.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)