blob: becb79e98501ef99b5df802eaff14abb670779d9 [file] [log] [blame]
Teng Liang938be582015-07-15 16:25:26 -07001import threading
2import time
3
4def f():
5 print("HHHHH")
6 # call f() again in 60 seconds
7 threading.Timer(3, f).start()
8
9# start calling f now and every 60 sec thereafter
10
11if __name__ == '__main__':
12 f()