I have a small python program written for python 2.7.3:
import time
def fun():
print('Hi')
for i in range(3):
Timer(i, fun).start()
When I run it, I get the error:
NameError: name 'Timer' is not defined
How can I find out which module supports this functionality?