📜  Python – 乌龟.bye()

📅  最后修改于: 2022-05-13 01:54:22.721000             🧑  作者: Mango

Python – 乌龟.bye()

turtle 模块以面向对象和面向过程的方式提供海龟图形原语。因为它使用 tkinter 作为底层图形,所以它需要安装一个支持 Tk 的Python版本。

海龟.bye()

该函数用于关闭海龟图形窗口。它不需要任何论据。

以下是上述方法的实现以及一些示例:

示例 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()

输出 :

示例 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()

输出 :