Reference no: EM132221736
1 Ordering System
In this first part of Task 2, you should write a Python script for the ice cream ordering system. Your program must store the prices of the individual items (cones, scoop flavours and toppings). Specifically, the program should do the following:
• At the start, the program should ask for the customer’s name to personalise and track the order and then get the number of ice creams from the customer.
• For each ice cream, the cone type, scoop amount, scoop flavour, number and type of toppings should be taken from the customer.
• At the end the program should display the itemised order with the total price.
• The program should be able to handle invalid entries inputted (such as incorrect cone type, or invalid number of toppings)
2 Ice cream trends
In this second part of Task 2, you should write a Python script that reads and analyses the ice cream data file (Weekly_Sales.csv) and merge it with the store details file (StoreDetails.csv) and region file (Region.csv) to produce at least FOUR useful graphs that give insight into the ice cream sales trends.
For example, here are some suggestions:
• show the change in ice cream sales over the period 2010 to 2012
• compare the trends of all stores in a given year.
• compare sales against the different store details (i.e. temperature and unemployment) to see what the relationship between them is (data from StoreDetails.csv).
• compare sales in the five different regions (using the data from the Region.csv to group the stores).