Hasta ahora, hemos tenido que escribir números cada vez que queremos Tina se mueva. Como mencionamos en el la lección anterior, podemos hacer listas enlazadas donde los elementos de una lista pueden se leen hacia la derecha: ```python.run import turtle tina = turtle.Turtle() tina.shape('turtle') lista_numeros =[1,2,3,4,5,6,7,8,9,10] tina.color("green") for number in lista_numeros: tina.forward(number*10) tina.left(60) ``` El siguiente código: `lista_numeros =[1,2,3,4,5,6,7,8,9,10]` es donde Tina toma números. ¿Puedes cambiarlos y ver cómo Tina se mueve? Asegùrate que la lista empiece y termine con corchetes (`[]`), y con una coma (`,`) entre cada número.

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