Skip to content

Instantly share code, notes, and snippets.

@etscrivner
Created July 31, 2014 00:43
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 etscrivner/4f4e02e98465a7134e8d to your computer and use it in GitHub Desktop.
Save etscrivner/4f4e02e98465a7134e8d to your computer and use it in GitHub Desktop.
Shame ban name generator
import random
adjectives = [
'awkward', 'ginger', 'babyfaced', 'sloppy', 'hairy', 'sweaty',
'gangly', 'ugly', 'neckbeard', 'angry', 'constipated', 'wrinkly',
'porous', 'oozy', 'cuddly'
]
nouns = [
'bieber', 'horse', 'badger', 'hippo', 'banana', 'prune', 'prarie',
'skirt', 'poop', 'monkey', 'old people', 'sloth', 'gurdle', 'pickle'
]
verbs = [
'lover', 'tamer', 'sniffer', 'cuddler', 'licker', 'eater', 'picker'
]
if __name__ == '__main__':
print '{} {} {}'.format(
random.choice(adjectives),
random.choice(nouns),
random.choice(verbs)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment