Ejemplo 1: pitón tortuga
from turtle import *
color('red', 'yellow')
begin_fill()
while True:
forward(200)
left(170)
if abs(pos()) < 1:
break
end_fill()
done()
Ejemplo 2: ejemplo de tortuga pitón
# Step 1: Make all the "turtle" commands available to us.
import turtle
# Step 2: Create a new turtle. We'll call it "bob"
bob = turtle.Turtle()
# Step 3: Move in the direction Bob's facing for 50 pixels
bob.forward(50)
# Step 4: We're done!
turtle.done()
Ejemplo 3: tortuga con pitón
import turtle
#creating a square with turtle
t = turtle.Turtle()
t.forward(100)
t.color('blue')
t.right(90)
t.forward(100)
t.right(90)
t.forward(100)
t.right(90)
t.forward(100)
Ejemplo 4: tutorial de tortuga pitón
>>> turtle.pos()
(440.00,-0.00)
Ejemplo 5: tutorial de tortuga pitón
>>> turtle.position()
(0.00,240.00)
>>> turtle.setx(10)
>>> turtle.position()
(10.00,240.00)
Ejemplo 6: tutorial de tortuga pitón
>>> s = turtle.getscreen()
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)