Python中的turtle.ontimer()函数
turtle模块以面向对象和面向过程的方式提供Turtle图形基元。因为它使用 Tkinter 作为底层图形,它需要安装一个支持 Tk 的 Python 版本。
turtle.ontimer()
该函数用于安装一个定时器,在t毫秒后调用fun。
语法 :
turtle.ontimer(fun, t=0)
参数:
参数 | 描述 |
---|---|
fun | 一个没有参数的函数 |
t | 一个数字 >= 0 |
下面是上述方法的实现,并附有一个例子。
# 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))
输出 :
在这里我们可以发现,在一段时间后(由计时器设置),它自动随机改变Turtle图形窗口的背景颜色。