Skip to content

Instantly share code, notes, and snippets.

@jasonburk
Created February 22, 2013 06:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonburk/5011160 to your computer and use it in GitHub Desktop.
Save jasonburk/5011160 to your computer and use it in GitHub Desktop.
Because everyone needs this. :) The lyrics to the Badger song to play along side the video! www.youtube.com/watch?v=EIyixC9NsLI
import time
#badger 12 times
badger = 0
while badger < 12:
print "Badger"
time.sleep(0.4)
badger = badger + 1
#mushroom 2 times
mushroom = 0
while mushroom < 2:
print "Mushroom!"
time.sleep(0.6)
mushroom = mushroom + 1
#badger 12 times
badger = 0
while badger < 12:
print "Badger"
time.sleep(0.4)
badger = badger + 1
#mushroom 2 times
mushroom = 0
while mushroom < 2:
print "Mushroom!"
time.sleep(0.6)
mushroom = mushroom + 1
#badger 11 times
badger = 0
while badger < 11:
print "Badger"
time.sleep(0.4)
badger = badger + 1
time.sleep(0.4)
#Mushroom mushroom 1 time
print "Mushroom! MUSHROOM!"
time.sleep(0.6)
#badger 11 times
badger = 0
while badger < 11:
print "Badger"
time.sleep(0.4)
badger = badger + 1
#Ahh! Snake, snake! Ohhhhh it's a snake
print "Argh snake! A snake! Ooooohhhh it's a SNAKE!!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment