# madglib.py

# http://www.madglibs.com/showglib.php?glibid=188
madglib = '''
Be kind to your %(noun1)s-footed %(plural_noun)s
For a duck may be somebody's %(noun2)s,
Be kind to your %(plural_noun)s in %(place)s
Where the weather is always %(adjective)s.

You may think that this is the %(noun3)s,
Well it is.
'''











sdict = {'noun1': 'a noun', 'noun2': 'another noun', 'noun3':'last noun',
         'plural_noun': 'many things', 'place':'kitchen', 'adjective': 'green' }
print( madglib % sdict )
