Advertisement
Guest User

Old English Insults Generator

a guest
Dec 16th, 2016
314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.49 KB | None | 0 0
  1. #Old English Insults Generator
  2. #Written by Brin Brody (brinbrody@icloud.com)
  3. #License: Creative Commons Attribution-NonCommercial 4.0 International
  4.  
  5. import random
  6.  
  7. a = ["artless","bawdy","beslubbering","bootless", "churlish", "cockered", "clouted", "craven", "currish", "dankish", "dissembling", "droning", "errant", "fawning", "fobbing", "froward", "frothy", "gleeking", "goatish", "gorbellied", "impertinent", "infectious", "jarring", "loggerheaded", "lumpish", "mammering", "mangled", "mewling", "paunchy", "pribbling", "puking", "puny", "qualling", "rank", "reeky", "rougish", "ruttish", "saucy", "spleeny", "spongy", "surly", "tottering", "unmuzzled", "vain", "venomed", "villanious", "warped", "wayward", "weedy", "yeasty"]
  8.  
  9. b = ["base-court", "bat-fowling", "beef-witted", "beetle-headed", "boil-brained", "clapper-clawed", "clay-brained", "common-kissing", "crook-pated", "dismal-dreaming", "dizzy-eyed", "doghearted", "dread-bolted", "earth-vexing", "elf-skinned", "fat-kidneyed", "fen-sucked", "flap-mouthed", "fly-bitten", "folly-fallen", "fool-born", "full-gorged", "guts-griping", "half-faced", "hasty-witted", "hedge-born", "hell-hated", "idle-headed", "ill-breeding", "ill-nurtured", "knotty-pated", "milk-livered", "motley-minded", "onion-eyed", "plume-puckered", "pottle-deep", "pox-marked", "reeling-ripe", "rough-hewn", "rude-growing", "rump-fed", "shard-borne", "sheep-biting", "spur-galled", "swag-bellied", "tardy-gaited", "tickle-brained", "toad-spotted", "unchin-snouted", "weather-bitten"]
  10.  
  11. c = ["apple-john", "baggage", "barnacle", "bladder", "boar-pig", "bugbear", "bum-bailey", "cancker-blossom", "clack-dish", "clotpole", "coxcomb", "codpiece", "death-token", "dewberry", "flap-dragon", "flax-wench", "flirt-gill", "foot-licker", "fustilarian", "giglet", "gudgeon", "haggard", "harpy", "hedge-pig", "horn-beast", "hugger-mugger", "joithead", "lewster", "lout", "maggot-pie", "malt-worm", "mammet", "measle", "minnow", "miscreant", "moldwarp", "mumble-news", "nut-hook", "pigeon-egg", "pignut", "puttock", "pumpion", "ratsbane", "scut", "skainsmate", "strumpet", "varlot", "vassal", "whey-face", "wagtail"]
  12.  
  13.  
  14. amount = int(input("Amount of insults: "))
  15.  
  16. for i in range(0,amount):
  17.     achoice = a[random.randint(0, len(a)-1)]
  18.     bchoice = b[random.randint(0, len(b)-1)]
  19.     cchoice = c[random.randint(0, len(c)-1)]
  20.     print(str(i+1)+".  Thou "+achoice,bchoice,cchoice+"!")
  21.  
  22. #print("There are "+str(len(a)*len(b)*len(c))+" possibilities.  You generated",str(amount)+".")
  23. #125000 total possibilities! :O
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement