Skip to content

Instantly share code, notes, and snippets.

@Nalisarc
Created July 19, 2015 05:18
Show Gist options
  • Save Nalisarc/f178fbafd023b35ac5d0 to your computer and use it in GitHub Desktop.
Save Nalisarc/f178fbafd023b35ac5d0 to your computer and use it in GitHub Desktop.
def insultgen():
from random import randrange
list1 = ['lazy','stupid','insecure','idiotic','slimy','slutty',
'smelly','pompous','communist','dicknose','pie-eating',
'racist','elitist','white trash','drug-loving','butterface',
'tone deaf','ugly','creepy']
list2 = ['douche','ass','turd','rectum','butt','cock','shit',
'crotch','bitch','turd','prick','slut','taint','fuck',
'dick','boner','shart','nut','sphincter']
list3 = ['pilot','canoe','captain','pirate','hammer','knob','box','jockey',
'nazi','waffle','goblin','blossum','biscuit','clown','socket',
'monster','hound','dragon','balloon']
x = randrange(0,len(list1))
y = randrange(0,len(list2))
z = randrange(0,len(list3))
print "You {0} {1} {2}".format(list1[x],list2[y],list3[z])
close = False
while close == False:
insultgen()
prompt = raw_input('Another?: ')
if prompt == 'n':
exit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment