Code. Write your program in Python using the above steps. Save your program as a .py file name yourlastname_Lab3.py Output. Your program should produce correctly labeled output with dollar amounts rounde decimal places and dollar signs displayed. See section 2.8 More About Output Sample diale Enter the number of packages purchased: 53 Discount Amount: $ 1,579.40. Total Amount: $ 6,317.60
Code. Write your program in Python using the above steps. Save your program as a .py file name yourlastname_Lab3.py Output. Your program should produce correctly labeled output with dollar amounts rounde decimal places and dollar signs displayed. See section 2.8 More About Output Sample diale Enter the number of packages purchased: 53 Discount Amount: $ 1,579.40. Total Amount: $ 6,317.60
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
My total price and discounted price are wrong.
Expert Solution
Explanation
1) Below is updated python program which calculates total price and discounted price
- It gets the number of package purchased
- Defines package price
- Apply discount based on number of package
- Display discount and total amount correctly formatted
2) In your program mistake is in print statement you are doing calculation again which is not required. program has calculated discount and total amount in if else condition blocks. you only need to calculate the price after discount
3) Save Program in python file and run
Step by step
Solved in 3 steps with 1 images
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education