Created
October 4, 2014 16:59
-
-
Save samplereality/bca002567d43e51c633b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
possibleKings = ['king', 'queen', 'Elvis impersonator'] | |
possibleVerbs = ['dead', 'sleeping', 'dying', 'singing'] | |
king = random.choice(possibleKings) | |
dead = random.choice(possibleVerbs) | |
print 'The ' + king + ' is ' + dead + '. Long live the ' + king + '.' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment