Skip to content

Instantly share code, notes, and snippets.

@AvocadosConstant
Created August 4, 2017 14:43
Show Gist options
  • Save AvocadosConstant/80cec40c7d40d3d8717496c8fc7b5dc6 to your computer and use it in GitHub Desktop.
Save AvocadosConstant/80cec40c7d40d3d8717496c8fc7b5dc6 to your computer and use it in GitHub Desktop.
Spread the knowledge of snacks around the Bloomberg offices to the Utopia - Food Alerts p-chat!
from random import choice
brands = [
"Wonka",
"Hershey's",
"Reese's",
"Nestle",
"Kelloggs",
"Keebler",
"Mars"
]
buzz = [
"Gluten-free",
"Low-fat",
"Eco-friendly",
"Organic",
"0-Calorie",
"Transcendental",
"Non-GMO",
"Sugar-free",
"Free-trade",
"Free-range"
]
flavors = [
"Chocolate",
"Hazelnut",
"Beefy",
"Double-stuff",
"Chocolate Chip",
"Marshmallow",
"Salty"
]
snacks = [
"Cookies",
"Crisps",
"Chips",
"Taffy",
"Gummies",
"Nuggets",
"Bars",
"Cereal",
"Spatzle",
"Lollipops"
]
location = [
"on 29",
"@ 919",
"6th floor pantry",
"29th",
"on LL2"
]
for i in range(10):
print(
choice(brands),
choice(buzz),
choice(flavors),
choice(snacks),
choice(location),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment