Hello i am your assistant and i am gonna remind you periodically to have a break or do exercise or to drink water
Traceback (most recent call last):
File "C:\Users\lenovo\.spyder-py3\python_project_exercise7.py", line 51, in <module>
schedule.every(10).minutes.do(waater())
AttributeError: 'Job' object has no attribute 'do'
# -*- coding: utf-8 -*-
"""
Created on Wed Sep 29 15:14:04 2021
@author: Asrar
"""
import schedule
import time
import datetime
from datetime import *
def waater():
print('hehe')
schedule.every(10).minutes.do(waater())
and the output is like this: