
An L. answered 12/06/19
Adjunct Professor Computer Science
Python is a lot easier to implement than C++ for this kind of problem. Processing string (English) is extremely easy in Python. You can also keep track of your inventory by using Python dictionary (key-value pair) and save it to file ("shelve" in Python). Your key is your item ID and value may contain description, price, how many you have in your inventory, etc ...