import random
def decide(): cuisines = { 'Italian': ['Pizza Hut', 'Olive Garden', 'Pasta House'], 'Mexican': ['Taco Bell', 'Chipotle', 'Qdoba'], 'Asian': ['Sushi House', 'Thai Express', 'Panda Express'] }
cuisine = random.choice(list(cuisines.keys()))
options = cuisines[cuisine]
print(f"Let's eat {cuisine} food!")
print("Here are some options:")
for option in options:
print(option)
decide()
Log in or sign up for Devpost to join the conversation.