I want to be able to use the time module to do some snippets of code, but I'm a bit confused. Granted this is the first time I use it so I don't know exactly how to. Here's my goal however:
import time
(every 10 minutes)
    # do something
I want to be able to use the time module to do some snippets of code, but I'm a bit confused. Granted this is the first time I use it so I don't know exactly how to. Here's my goal however:
import time
(every 10 minutes)
    # do something
 
    
    import time
tenminutes = 600
while true:
  time.sleep(tenminutes)
  print "This is a reminder"
This would print something to the console every 10 minutes
