import random bread = [ 'brioche', 'challah', 'ciabatta', 'whole-wheat', 'white bread', 'sourdough', 'rye', 'pumpernickel', 'focaccia', 'multigrain', ] meatMethod = [ 'pulled', 'roast', 'corned', 'bbq', 'coronation', 'malibu', 'steamed', 'smoked', 'sous vide', ] meat = [ 'ham', 'lamb', 'pork', 'beef', 'chicken', 'turkey', 'tuna', 'salmon', 'prawn', 'lobster', 'sausage', 'pepperoni', 'prosciutto', 'bacon', 'capocollo', 'falafel', 'tofu', 'salami', ] vegMethod = [ 'sliced', 'diced', 'peeled', 'mashed', 'pureéd', 'roasted', 'boiled', 'broiled', 'sauteéd', 'chopped', 'grated' 'smoked', ] veg = [ 'pickle', 'lettuce', 'argula', 'beetroot', 'tomato', 'fig', 'cranberry', 'plum', 'corn', 'raspberries', 'grapes', 'pineapple', 'mango', 'cucumber', 'carrot', 'banana', 'bell pepper', 'red pepper', 'green pepper', 'hot pepper', 'avocado', 'chickpea', 'raisins', 'lettuce', 'spinach', 'banana peppers', 'jalapeños', 'black olives', ] eggMethod= [ 'fried', 'over easy', 'poached', 'hard boiled', 'soft boiled', 'scrambled', ] sauce = [ 'hummus', 'coleslaw', 'sweet chilli', 'tikka', 'yogurt', 'marmite', 'nutella', 'marmite', 'honey', 'peanut butter', 'almond butter', 'cashew butter', 'mustard', 'mayonnaise', 'hot sauce', 'bbq sauce', 'caviar', 'garlic aioli', 'olive tapenade', 'ketchup', 'butter', 'ranch', 'vinaigrette', 'buffalo sauce' ] cheese = [ 'goat', 'pepper jack', 'american', 'swiss', 'brie', 'cream', 'sharp cheddar', 'mild cheddar', 'colby', 'colby-jack', 'monterey jack', 'muenster', 'nacho', 'bleu', 'mozzarella', 'havarti', 'provolone', 'fontina', 'manchego', 'smoked gouda', 'unsmoked gouda', 'gruyére', 'parmesan', 'feta' ] breadChoice = random.choice(bread) print() print("You enter your corner sandwich shop and call out to Lisha. She responds, 'The regular?'. You nod, and even though she doesn't look up, she begins to make the sandwich.") print() print("ʕ......Slice of " + breadChoice + ".....ʔ") ingredientCount = 5550 for i in range(ingredientCount): print("~~~~~ spread of " + random.choice(sauce) + "~~~~~") print("□▫□▫□▫□▫" + random.choice(vegMethod) + " " + random.choice(veg) + "□▫□▫□▫□▫□▫") print("▁▁▁ " + random.choice(cheese) + " cheese ▁▁▁") print(" ⎚ " + random.choice(eggMethod) + " egg ⎚ ") print(" ▒▒▒▒▒▒" + random.choice(meatMethod) + " " + random.choice(meat) + "▒▒▒▒▒▒") print(" ⎚ " + random.choice(eggMethod) + " egg ⎚ ") print("▁▁▁ " + random.choice(cheese) + " cheese ▁▁▁") print("□▫□▫□▫□▫" + random.choice(vegMethod) + " " + random.choice(veg) + "□▫□▫□▫□▫") print("~~~~~ spread of " + random.choice(sauce) + "~~~~~") print("ʕ......Slice of " + breadChoice + ".....ʔ") print() print("She wraps the tall sandwich and slips a few napkins in the bag. She wipes a bead of sweat from her forehead and then looks up. 'Cash or credit?' she asks tiredly.")