“Create a program that generates 1000 random integers between 1 and 100 (both included) and save them into a list.” has been added to your cart. Continue shopping
Data Store Blog
Explore the latest insights, tutorials, and updates in web scraping, Python automation, and data mining—tailored for small businesses and data-driven entrepreneurs. Our blog empowers you to stay ahead of the curve, unlocking faster workflows and smarter decision-making through cutting-edge automation techniques.
Categories
- ACC 543
- Accounting
- Biology
- Business
- C Programming
- C++
- Calculus
- Chemical Engineering
- Chemistry
- Civil Engineering
- Communication
- Computer Science
- Computer Science
- CPT 341 Spring 2020
- Discussion
- Ecomonic
- Education
- Electric Engineering
- Engineering
- English
- Environmental Science & Engg
- Essay
- Excel
- Finance
- Health
- healthcare
- History
- Information Systems
- Introduction to sociology 2nd edition
- Java
- Java
- Law
- Mathematics
- Mechanical Engineering
- Men's Fashion
- NATV 1220
- Nursing
- Nutrition
- Operations Management
- Physics
- Programming
- PSYC 325 Final Exam
- Psychology
- Psychology
- Python
- Research Paper
- Social Sciences
- Statistics
- Statistics and Probability
- Uncategorized
- Visual Basic.NET
- Women's Fashion
Write a Python program for an online MoonBucks coffee order. Coffee is sold by the pound, and the price per pound
Write a Python program for an online MoonBucks coffee order. Coffee is sold by the pound, and the price per pound depends upon the quantity ordered according to the table shown below. Partial pounds are not sold. Shipping is $1.00 per pound, but free for coffee orders over $150 before tax. The user must enter the number of pounds desired from the keyboard. The program will then display the cost of the coffee, the 7% sales tax, shipping charges (if any) and the total amount due. All four values should be displayed in currency format with the $ sign right up against the first digit.
See SAMPLE OUTPUTS below.
MoonBucks Coffee Company – Coffee Prices
40 pounds or more $7.50 per lb.
20 pounds or more $8.75 per lb.
10 pounds or more $10.00 per lb.
1 to 9 pounds $12.00 per lb.
Start with a comment that includes your name and course number.
Include pseudocode that describes all steps required to solve the problem.
Employ variable names that describe the values they store and adhere to Python naming conventions.
Include additional comments as needed to annotate your code.
Use correct spelling and grammar.
SAMPLE OUTPUT
How many pounds are you ordering? 15
Cost of coffee $150.00
7% sales tax $10.50
Shipping fee $15.00
Total payable $175.50
SAMPLE OUTPUT
How many pounds are you ordering? 50
Cost of coffee $375.00
7% sales tax $26.25
Shipping fee $0.00
Total payable $401.25