No sólo podemos cambiar a las tortugas de nombre, también podemos tener varias! Démosle a Tina un amigo llamado Tommy : ```python.run import turtle tina = turtle.Turtle() tina.shape('turtle') tina.color('black') tina.left(90) tina.forward(100) tina.write("Soy Tina!") tina.forward(20) tina.right(90) tommy = turtle.Turtle() tommy.shape('turtle') tommy.color('black') tommy.right(90) tommy.forward(100) tommy.write("Soy Tommy!") tommy.forward(20) tommy.left(90) ``` Tina y Tommy son de color ` black` (negro). ¿Puedes modificar el color de Tina `tina.color('black')` y Tommy `tommy.color('black')` para que podamos diferenciarlos? Prueba algún color diferente como `'goldenrod'` (dorado) o `'magenta'`. Y lo más importante: ¡No olvides las **comillas ** (` ' `)!

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