Advertisement
Guest User

Sandwich Maker Improved

a guest
Oct 21st, 2014
479
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.31 KB | None | 0 0
  1. import random
  2.  
  3. insideStuff = ["Lettuce", "Mayo", "Tomato", "Mustard", "Tomato Catsup / Ketchup", "Sliced Ham", "Processed Cheddar or American Cheese",
  4.     "Peanut Butter", "Poultry", "Natural Cheddar or Natural American Cheese", "Ground Beef/Patty", "Raw Onions", "Jelly",
  5.     "Beef Frankfurter or Hotdog", "Mayo type salad dressing", "Dill Cucumber Pickles", "Swiss Cheese", "Tuna Salad", "Bologna",
  6.     "Light Mayo", "Unspecified cheese", "Provolone", "Whole Fried Egg", "Bacon"]
  7.  
  8. outsideStuff = ["Soft White Roll", "White Bread", "Wheat or Cracked Wheat Bread", "Whole Wheat Bread", "Roll, Hoagie, Submarine",
  9.     "Toaster White Bread", "Multigrain Bread", "Hard White Roll", "Wheat Flour Tortilla", "Rye Bread", "Commercial Baked Biscuit",
  10.     "Whole Grain White Bread", "Mexican Roll, Bolillo", "Wheat or Cracked Wheat Roll", "Whole Wheat Roll",
  11.     "Toasted Wheat or Cracked Wheat Bread", "Bagel", "Whole Wheat Tortilla", "English Muffin", "Pita Bread", "Sour Dough Bread",
  12.     "Potato Bread", "Croissant", "French or Vienna Roll"]
  13.  
  14. middle1  = random.randint(0, 24)
  15. middle2  = random.randint(0, 24)
  16. middle3  = random.randint(0, 24)
  17. outside = random.randint(0, 24)
  18.  
  19. print("Fillings: " + insideStuff[middle1] + ", " + insideStuff[middle2] + " and " + insideStuff[middle3])
  20. print("Bread: " + outsideStuff[outside])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement