El módulo de Turtle proporciona primitivos de gráficos de Turtle, tanto en formas orientadas a objetos como orientadas a procedimientos. Debido a que usa Tkinter para los gráficos subyacentes, necesita una versión de Python instalada con soporte Tk.
Turtle.mostrarTurtle()
Este método se utiliza para hacer que la Turtle sea visible. No requiere ningún argumento.
Sintaxis:
turtle.showturtle() or turtle.st()
A continuación se muestra la implementación del método anterior con un ejemplo:
Ejemplo:
Python3
# import package import turtle # set speed to slowest for # better understandings turtle.speed(1) # motion turtle.forward(100) turtle.right(90) # hide the turtle turtle.hideturtle() # motion turtle.forward(100) turtle.right(90) turtle.forward(100) turtle.right(90) # show the turtle turtle.showturtle() # motion turtle.forward(100) turtle.right(90)
Producción :
Publicación traducida automáticamente
Artículo escrito por deepanshu_rustagi y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA