This issue is for improvements & changes needed to the inventory-management concept exercise on the Python track.
Goals
Improve the Inventory-management (dicts) concept exercise by adding the dict.pop() method & creation via dict literal to the tasks the student has to complete. Make other improvement changes as noted below:
Getting started
Please please please read the docs before starting. Posting PRs without reading these docs will be a lot more frustrating for you during the review cycle, and exhaust Exercism's maintainers' time. So, before diving into the implementation, please read up on the following documents:
This issue is for improvements & changes needed to the
inventory-managementconcept exercise on the Python track.Goals
Improve the Inventory-management (
dicts) concept exercise by adding thedict.pop()method & creation viadict literalto the tasks the student has to complete. Make other improvement changes as noted below:design.mddoc to adddict.pop()to the designIntroduction.mdto adddict.pop()usage.instructions.mdto add new tasks:- creation of
dictliterals- using
dict.pop()hints.mdfordict.pop()usageexemplar.pyto include new idiomatic solution for newly added tasksdicts_test.pyfile to add new tests fordict.pop()task.dicts.pystub file to add new tasks.import *Getting started
Please please please read the docs before starting. Posting PRs without reading these docs will be a lot more frustrating for you during the review cycle, and exhaust Exercism's maintainers' time. So, before diving into the implementation, please read up on the following documents: