Skip to content

Instantly share code, notes, and snippets.

@stevenrich-zz
Last active December 30, 2015 07:08
Show Gist options
  • Save stevenrich-zz/7793629 to your computer and use it in GitHub Desktop.
Save stevenrich-zz/7793629 to your computer and use it in GitHub Desktop.
import time
x = 99
beer = " bottles of beer"
wall = " on the wall"
take = "take one down"
passit = "pass it around"
while x>0:
print str(x) + beer + wall
time.sleep(2)
print str(x) + beer
time.sleep(2)
print take
time.sleep(1)
print passit
time.sleep(1)
x = x-1
print str(x) + beer + wall
time.sleep(2)
print "You are out of beer. :("
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment