Skip to content

Instantly share code, notes, and snippets.

@luisenriquecorona
Last active March 29, 2020 05:39
Show Gist options
  • Save luisenriquecorona/3529de6b545c3acb5907c891dbcae02e to your computer and use it in GitHub Desktop.
Save luisenriquecorona/3529de6b545c3acb5907c891dbcae02e to your computer and use it in GitHub Desktop.
Escribamos un programa que haga avanzar 100 pasos a la tortuga y deje un trazo en pantalla.
from turtle import Screen, Turtle
pantallaa=Screen ()
pantalla.setup (425,225)
pantalla.screensize (400,200)
tortuga=Turtle ()
tortuga. forward (100)
pantalla. exitonclick()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment