Una de las características más importantes de las funciones es que pueden repetir instrucciones una y otra vez. Como hemos mencionado anteriormente, las funciones ** son como recetas **. En este ejercicio, le hemos dado una receta para dibujar pasteles y Tina hizo tres. Haz que dibuje mas **llamando ** la función con diferentes posiciones en ` x ` e ` y`, se encuentran en la parte inferior del programa. ¿Cuántos pasteles puede Tina dibujar? ```python.run:height='500' import turtle tina=turtle.Turtle() tina.shape('turtle') def haz_pastel(x=0, y=0): tina.penup() tina.color('pink') tina.goto(x, y) tina.pendown() tina.begin_fill() tina.goto(x + 20, y) tina.goto(x + 20, y + 20) tina.goto(x - 20, y + 20) tina.goto(x - 20, y) tina.goto(x, y) tina.end_fill() tina.goto(x, y + 20) tina.color('yellow') tina.goto(x, y + 35) tina.goto(x, y + 30) tina.color('black') tina.goto(x, y + 20) tina.penup() tina.goto(x, y + 10) haz_pastel(0,0) haz_pastel(-100,0) haz_pastel(100,0) ``` Pista: El primer número en ` haz_pastel( )` es ** que tan a la izquierda o hacia la derecha va **, mientras que el segundo es ** cuán alto o abajo ** esta cuando Tina dibuja.

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.
×