To Admin,
I’m not sure if this is the right place to post this thread. I found tiny error in the Dictionary Quiz section in Python 3 tutorial.
Link provided.
[https://www.codecademy.com/courses/learn-python-3/quizzes/using-dicts]
What will the following code output?
combo_meals = {1: ["hamburger", "fries"], 2: ["hamburger", "fries", "soda"], 4: ["veggie burger", "salad", "soda"], 6: ["hot dog", "apple slices", "orange juice"]}
print(combo_meals.get(3, ["hamburger", "fries"])
There should be double quote end of the print statement.
print(combo_meals.get(3, [“hamburger”, “fries”]))
Happy New Year.