Question: USING PYTHON 4. Housemate Helper Overvie This program allows a bunch of housemates to organize the sharing of expenses and the maintaining of inventory. Any

 USING PYTHON 4. Housemate Helper Overvie This program allows a bunch

USING PYTHON 4. Housemate Helper Overvie This program allows a bunch of housemates to organize the sharing of expenses and the maintaining of inventory. Any housemate can enter his name, an item he bought (by category, either: Food, Utility, or Toy) the quantity of the item, and the total amount of money he spent. Then various queries can be made, about the quantity of items, about who owes who money, and so on, as detailed below Requirement You must 1) create a class named HousemateHelper, which will be described below, 2) create other classes as needed, which w be known by the top level class HousemateHelper, 3) write a simple console application (no graphics!) that uses the class HousemateHelper, with a few simple method calls, to create an interactive housemate helper In the following dission by a Item-String we mean a string which takes on one of the following 3 val "food ", or "toy". The class HousemateHelper, must have at least the following methods (it may have more methods) (a) The initializer takes no iputs. (b) addPurchase: Takes as input Name, Item, Quantity, Cost; where Name is the name of the person who bought the item, Item is an Item-String, Quantity is positive integer and Cost is a float. This information should be appropriately saved. (c) getInventory: Takes a string input which should be an iem-string, and returns the quantity of that item currently possessed (d) useltem: Takes as input a string, and a positive integer k. The string should be an Item-String. The result is that k of the given item are removed from inventory (e) personValue: Takes a string as input, which should be one of the people who has purchased something. The method returns a float (positive, negative, or zero) which indicates how much that person is in owed. (f) equalize: Takes no inputs Indicates a scheme by which people can make pay- ments to equalize everything. The format output should be a list of tuples, where each tuple is of the form (A, B, x), where A and B are person names, and x is an mount of money that A should pay to B

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!