import threading def fun_timer(): print('python 每秒执行') global timer timer = threading.Timer(1, fun_timer) timer.start() fun_timer()