Question: It is a python program. Make sure it work and run in IDLE 3.10 Filename for submission: bottles.py In many jurisdictions a small deposit is

It is a python program. Make sure it work and run in IDLE 3.10
Filename for submission: bottles.py In many jurisdictions a small deposit is added to drink containers to encourage people to recycle them. In one particular jurisdiction, drink containers holding one liter or less have a $0.10 deposit, and drink containers holding more than one liter have a $0.25 deposit. Write a program that reads the number of containers of each size from the user. Your program should continue by computing and displaying the refund that will be received for returning those containers. Format the output so that it includes a dollar sign and two digits to the right of the decimal point. Note: For this assignment and the remaining two parts below) pay attention to your output (spelling, etc.) to match the specification precisely. If you fail to do so, your code will not pass the automated testing. You may copy the following prompts directly into your code so you don't make a spelling or spacing mistake: How many containers that are 1 liter or less? How many containers that are more than 1 liter? Your total refund will be REMINDER: Don't forget: Include a flowchart that describes your program's operation (this will be counted as part of your grade as 'documentation' in the grading rubric) Sample output = RESTART: /Users/keithbagley/Dropbox/NORTHEASTERN UNIVERSITY/CS5001/FALI omework/HW1/bottles.py How many containers that are 1 liter or less? 2 How many containers that are more than 1 liter? 3 Your total refund will be $0.95 >>>
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
