I have a code that I need to run every 2 hours, it doesn't have to be exactly every 2 hours, is there any reason I shouldn't use time.sleep(7200) for this?
I don't really know any other methods so I decided to take the lazy way out.
My code now reads something like this:
while True:
command
time.sleep(7200)
I know it would work but I'm wondering if it would take resources away from my system if I did that way.