Skip to content

Instantly share code, notes, and snippets.

@KoaxialKable
Last active August 29, 2015 14:25
Show Gist options
  • Save KoaxialKable/8eb6f994a61541e09b9b to your computer and use it in GitHub Desktop.
Save KoaxialKable/8eb6f994a61541e09b9b to your computer and use it in GitHub Desktop.
import time
odd = True
counter = 0
while True:
counter += 1
time.sleep(600)
print('{word} {count}'.format(count=counter, word='tick' if odd else 'tock'))
odd = not odd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment