Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Python 3 [70 pts] You will be writing code for recording the menu items and daily sales of a lemonade stand. It will have these

image text in transcribed

image text in transcribed

Python 3

[70 pts] You will be writing code for recording the menu items and daily sales of a lemonade stand. It will have these classes: Menultem, SalesForDay, and Lemonade Stand. All data members of each class should be marked as private (a leading underscore in the name). Since they're private, if you need to access them from outside the class, you should do so via get or set methods. Here are the method descriptions for the three classes: Menultem: A Menultem object represents a menu item to be offered for sale at the lemonade stand. init method - takes as parameters three values with which to initialize the Menultem: its name, its wholesale cost, and its selling price get methods for each of the data members: get_name(), get_wholesale_cost(), and get_selling_price() SalesForDay: A SalesForDay object represents the sales for a particular day. init method - takes as parameters two values with which to initialize the SalesForDay: the day (an integer for the number of days the stand has been open so far), and a dictionary whose keys are the names of the items and whose values are the numbers of those items sold that day get methods for each of the data members: get_day() and get_sales_dict() Lemonade Stand: Remember that the Lemonade Stand class must not directly access the private data members of Menultem and SalesForDay objects, but instead must call the appropriate get methods A Lemonade Stand object represents a lemonade stand, which has four data members: a string for the name of the stand an integer representing the current day a dictionary of Menultem objects, where the keys are the names of the items and the values are the corresponding Menultem objects a list of SalesForDay objects The Lemonade Stand methods are: init method - takes as a parameter the name of the stand; initializes the name to that value, initializes current day to zero, initializes the menu to an empty dictionary, and initializes the sales record to an empty list (remember to not use any mutable default arguments) a get method for the name: get_name() add_menu_item - takes as a parameter a Menultem object and adds it to the menu dictionary . enter_sales_for_today - takes as a parameter a dictionary where the keys are names of items sold and the corresponding values are how many of the item were sold. If the name of any item sold doesn't match the name of any Menultem in the menu, it raises an InvalidSalesitemError (you'll need to define this exception class). Otherwise, it creates a new SalesForDay object, using the current day and the dictionary that was passed in, and then increments the current day by 1 get_sales_dict_for_day - takes as a parameter an integer representing a particular day, and returns the dictionary of sales for that day (not a SalesForDay object) total_sales_for_menu_item - takes as a parameter the name of a menu item and returns the total number of that item sold over the history of the stand total_profit_for_menu_item - takes as a parameter the name of a menu item and returns the total profit on that item over the history of the stand total_profit_for_stand - takes no parameters and returns the total profit on all items sold over the history of the stand [10 pts] You must include a main function that runs if the file is run as a script, but not if the file is imported. The main function should try calling enter_sales_for_today() with a dictionary that contains an item name not in the menu. If an InvalidSalesitem is raised, it should be caught with a try/except that prints an explanatory message for the user (otherwise the function should proceed normally)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Relational Database And Transact SQL

Authors: Lucy Scott

1st Edition

1974679985, 978-1974679980

Students also viewed these Databases questions

Question

What does the start( ) method defined by Thread do?

Answered: 1 week ago