Las tortugas como Tina tienen una pluma que dibuja cuando se mueve. Utilizamos los siguientes comandos para poder hacer esto `penup()` (pluma hacia arriba) y `pendown()` (pluma hacia abajo) ```python.run import turtle tina = turtle.Turtle() tina.shape('turtle') tina.penup() tina.goto(0,100) tina.write("No puedo dibujar cuando la pluma esta hacia arriba!") tina.goto(0,50) tina.pendown() tina.write("Dibujo cuando la pluma esta hacia abajo!") tina.goto(-50,50) ```

Congratulations!

Enter your Name and Save your certificate:

Your certificate has been created!

Share this link with your friends, family or teacher:

Certificate of Completion

Presented to
for successfully completing an Hour of Python!
On behalf of the trinket.io team, congratulations and thanks!
Visit hourofpython.com to keep learning.
×