Menu Prices
You have a menu:
python
menu = {"burger": 5, "fries": 3, "drink": 2}
Read the number of items ordered, then read each item name. Print the total price.
Example: if someone orders burger and fries, the total is 8.
💡 Hints
?Hint 1
🔒Hint 2
🔒Hint 3
python