import schedule import time def send_email(): print('发邮件') schedule.every(5).seconds.do(send_email) while True: schedule.run_pending() time.sleep(1)