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.adiós()
Esta función se utiliza para cerrar la ventana de gráficos de turtle. No requiere ningún argumento.
Sintaxis: turtle.bye()
Parámetros: Ninguno
Devuelve: Nada
A continuación se muestra la implementación del método anterior con algunos ejemplos:
Ejemplo 1:
# import package import turtle # set turtle speed to # slowest for better # understandings turtle.speed(1) # motion turtle.forward(200) # use bye() method to # shut the window turtle.bye()
Producción :
Ejemplo 2:
# import package import turtle # set drawing turtle speed turtle.speed(10) # loop for pattern for i in range(12): turtle.circle(50) turtle.right(30) # As simply use of bye() here will shut the # turtle graphics window too fast so use # loops to pass the time for i in range(2000): for j in range(500): pass # shut the turtle graphics window turtle.bye()
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