Question: Task: Create a solution that accepts an integer input identifying how many items are to be purchased from a vending machine, followed by an equivalent

Task: Create a solution that accepts an integer input identifying how many items are to be purchased from a vending machine, followed by an equivalent number of string inputs representing the vending machine snack selections. The following dictionary snacks lists available snack selections as the key with the cost per selection as the value. snacks ={A1:0.25,A2:0.50,A3:0.75,B1:1.50,B2:1.75,B3:2.00,C1:0.25,C2:0.45,C3:0.30} Dutput the total cost of the purchased snacks to two decimal places. The solution output should be in the format Total price: Scost_of_snacks Sample Input/Output: If the input is then the expected output is Total price: $2.30 Input to program If your code requires input values, provide them here
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
