📜  Python中的 turtle.ontimer()函数

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

Python中的 turtle.ontimer()函数

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

海龟.ontimer()

该函数用于安装一个定时器,在 t 毫秒后调用 fun。

句法 :

turtle.ontimer(fun, t=0)

参数:

Arguments Description
funa function with no arguments
ta number >= 0

下面是上述方法的一个例子的实现:

Python3
# import packages
import turtle
import random
  
# global colors
col = ['red', 'yellow', 'green', 'blue',
       'white', 'black', 'orange', 'pink']
  
# method to call on timer
def fxn():
    global col
    ind = random.randint(0, 7)
  
    # set background color of the
    # turtle screen randomly
    sc.bgcolor(col[ind])
  
  
# set screen
sc = turtle.Screen()
sc.setup(400, 300)
  
# loop for timer
for i in range(10):
    turtle.ontimer(fxn, t=400*(i+1))


输出 :

在这里我们可以发现,经过一段时间(由定时器设置)后,它会自动随机改变海龟图形窗口的背景颜色。