Last active
March 29, 2020 05:39
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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