Skip to content

Instantly share code, notes, and snippets.

@dustin
Created December 26, 2008 06:30
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 dustin/40015 to your computer and use it in GitHub Desktop.
Save dustin/40015 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import random
if __name__ == '__main__':
colors=('red', 'green', 'yellow', 'blue')
limbs=('left foot', 'right foot', 'left hand', 'right hand')
print random.choice(limbs), random.choice(colors)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment