1 Create dictionary with a grocery list. Assign the dictionary to the variable grocery_list
2 Print out the contents of grocery_list, one item at a time, in the order: name, cost, quantity.
3 Update the quantity to 3
4 Print out the contents of grocery_list, one item at a time, in the order: name, cost, quantity, after the quantity update.
provided:
# Create dictionary with a grocery list. Assign the dictionary to the variable grocery_list
# Print out the contents of grocery_list
# Update the quantity to 3
# Print out the contents of grocery_list after updating the quantity
+3
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Grocery_List 1 Create dictionary with a grocery list. Assign the dictionary to the variable grocery_list 2 Print out the contents of ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Computers & Technology » Grocery_List 1 Create dictionary with a grocery list. Assign the dictionary to the variable grocery_list 2 Print out the contents of grocery_list, one item at a time, in the order: name, cost, quantity.