import time while True: print("This prints once a minute.") time.sleep(60) # Delay for 1 minute (60 seconds).