Skip to content

Instantly share code, notes, and snippets.

@audy
Created August 30, 2010 16:30
Show Gist options
  • Select an option

  • Save audy/557647 to your computer and use it in GitHub Desktop.

Select an option

Save audy/557647 to your computer and use it in GitHub Desktop.
# Add lib
def madlib(word1, word2):
print 'the %s sat on the %s' % (word1, word2)
word1 = 'cat'
word2 = 'mat'
madlib(word1, word2)
word2 = 'litter box'
madlib(word1, word2)
madlib('austin', 'nick\'s lap')
madlib(3, 5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment