求助:在python中有wait功能么?

求助:在python中有wait功能么?

如果我想要系统等待5秒再去执行下一条指令,应该怎么做呢?
threading中有一个Timer类。还可以创建一个子线程,先sleep5秒,再执行。
我在python的帮助文档里找到了这段
class Timer
A thread that executes a function after a specified interval has passed.
能不能帮忙举个具体的例子阿,谢谢:)
文档中不是有例子吗?

For example:

def hello():
    print "hello, world"

t = Timer(30.0, hello)
t.start() # after 30 seconds, "hello, world" will be printed