Skip to content

Instantly share code, notes, and snippets.

@Manuela82
Manuela82 / menu.py
Created November 18, 2017 20:44 — forked from kiwiBBC/menu.py
print "Welcome to our fabulous menu creator!"
menu_dict = {}
while True:
dish = raw_input("Please enter a dish: ")
price = raw_input("Please enter a price for the dish: ")
if price == True:
menu_dict[dish] = True
else:
menu_dict[dish] = price