Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Implement the design of the Purchaser and AarongProducts classes so that the following code generates the output below: #Write your code here p1 = Purchaser('Alex

Implement the design of the Purchaser and AarongProducts classes so that the following code generates the output below: #Write your code here p1 = Purchaser('Alex Light') print('1.===============================') print(p1) product1 = AarongProducts('Decor', 'Photo-Frame') print('2.===============================') print(product1) print('3.===============================') print(AarongProducts.products) print('4.===============================') AarongProducts.include_products('Souvenirs',['Brass-Flowervase 2170', 'Terracotta-Vase 3500']) print(f'Updated Item List: {AarongProducts.products}') print('5.===============================') product2 = AarongProducts('Souvenirs', 'Terracotta-Vase', 2) print(product2) print('6.===============================') p1.create_invoice(product1, product2) print('7.===============================') product3 = AarongProducts('Decor', 'Candles', 5) print(product3) print('8.===============================') product4 = AarongProducts('Souvenirs', 'Brass Sail-boats', 2) print(product4) print('9.===============================') p2 = Purchaser('Emma Lord', 'M01-23') print(p2) print('10.==============================') p2.create_invoice(product1, product3, product4) OUTPUT: 1.=============================== Customer SL no.: 1 Customer Name: Alex Light Registered Customer ID: None 2.=============================== Products Order Details: 1 Photo-Frame. 3.=============================== {'Decor': {'Small-Mirror': 1110, 'Photo-Frame': 1240, 'Candles': 350}, 'Souvenirs': {'Brass Sail-boats': 2200}} 4.=============================== Updated Item List: {'Decor': {'Small-Mirror': 1110, 'Photo-Frame': 1240, 'Candles': 350}, 'Souvenirs': {'Brass Sail-boats': 2200, 'Brass-Flowervase': 2170, 'Terracotta-Vase': 3500}} 5.=============================== Products Order Details: 2 Terracotta-Vase. 6.=============================== Total Bill of Alex Light: 8240.0 Tk. 7.=============================== Products Order Details: 5 Candles. 8.=============================== Products Order Details: 2 Brass Sail-boats. 9.=============================== Customer SL no.: 2 Customer Name: Emma Lord Registered Customer ID: M01-23 Registered Customer will get 10% discount 10.============================== Total Bill of Emma Lord: 6651.0 Tk.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Design Application Development And Administration

Authors: Michael V. Mannino

3rd Edition

0071107010, 978-0071107013

More Books

Students also viewed these Databases questions

Question

what is a peer Group? Importance?

Answered: 1 week ago

Question

Why do HCMSs exist? Do they change over time?

Answered: 1 week ago