¡Hemos aprendido muchísimo! Empezamos con un ejemplo como el de abajo.¡Ve hasta que tan lejos has llegado! ¡Programar es más divertido con amigos! Personaliza este código y compártelo: ```python.run import turtle def dibuja_circulo(turtle, color, size, x, y): turtle.penup() turtle.color(color) turtle.fillcolor(color) turtle.goto(x,y) turtle.pendown() turtle.begin_fill() turtle.circle(size) turtle.end_fill() tommy = turtle.Turtle() tommy.shape("turtle") tommy.speed(500) dibuja_circulo(tommy, "green", 50, 25, 0) dibuja_circulo(tommy, "blue", 50, 0, 0) dibuja_circulo(tommy, "yellow", 50, -25, 0) tommy.penup() tommy.goto(-100,-50) tommy.color('black') tommy.write( "Aprende Python!", None, None, "16pt bold") tommy.goto(-100,-80) tommy.write("Visita HourofPython.com", None, None, "16pt bold") tommy.goto(0,-110) ``` Agradecimientos a las personas que han hecho esta página posible y especialmente a **¡Tí por haber llegado hasta el final!**

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