menu =  {"burger": 3.99,
        "fries": 1.99,
        "drink": 0.99,
        "burger and fries": 5.98,
        "burger and drink": 4.98,
        "fries and drink": 2.98}
total = 0
 
#shows the user the menu and prompts them to select an item
print("Menu")
for k,v in menu.items():
   print(k + "  $" + str(v)) #why does v have "str" in front of it?
 
#ideally the code should prompt the user multiple times
item = input("Please select an item from the menu")
 
#code should add the price of the menu items selected by the user
 
print(menu[item])  
 
#print("Total=" + "  $" + str(v))
Menu
burger  $3.99
fries  $1.99
drink  $0.99
burger and fries  $5.98
burger and drink  $4.98
fries and drink  $2.98
5.98