Unit 1 Session 1 (Click for link to problem statements)
Understand what the interviewer is asking for by using test cases and questions about the problem.
Plan the solution with appropriate visualizations and pseudocode.
General Idea: Use the provided function to print out an emoji representing today's lunch. The function is already defined for you, so your job is to call it and give it the menu item you'd like.
def print_menu(menu):
print("Lunch today is: " + menu)
print_menu("🍕")