https://github.com/logan-bobo/product_inventory
Create an application which manages an inventory of products. Create a product class which has a price, id, and quantity on hand. Then create an inventory class which keeps track of various products and can sum up the inventory value. Inspired by - karan/Projects
https://github.com/logan-bobo/product_inventory
oop python
Last synced: 9 months ago
JSON representation
Create an application which manages an inventory of products. Create a product class which has a price, id, and quantity on hand. Then create an inventory class which keeps track of various products and can sum up the inventory value. Inspired by - karan/Projects
- Host: GitHub
- URL: https://github.com/logan-bobo/product_inventory
- Owner: logan-bobo
- Created: 2022-09-21T17:55:01.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-10-02T16:33:12.000Z (over 3 years ago)
- Last Synced: 2025-07-30T16:23:46.342Z (11 months ago)
- Topics: oop, python
- Language: Python
- Homepage:
- Size: 52.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# product_inventory
Create an application which manages an inventory of products. Create a product class which has a name, price, id, and
quantity on hand. Then create an inventory class which keeps track of various products and can sum up the inventory
value.