Please do it as as possible Question: 2 Implement the design of the BFC and Customer classes so that the following code generates the output below: print(f"It's been a wonderful day! \nToday, we have already served {BFC.order_id} customers. Few more to go before we close for today.") print("**************************************************") outlet1 = BFC() print("1.==========================================") print("Chicken Menu:") print(BFC.menu) print("2.==========================================") outlet1.addChicken('Regular',95,'Spicy',125) print("3.==========================================") print("Chicken Menu:") print(BFC.menu) print("4.==========================================") c1 = Customer("Ariyan") c1.order = "2xRegular" outlet1.placeOrderof(c1) print("5.==========================================") c2 = Customer("Ayan") c2.setOrder("2xRegular,3xSpicy") print("6.==========================================") outlet1.placeOrderof(c2) print("7.==========================================") print(c1) print("8.==========================================") print(c2)
Please do it as as possible
Question: 2
Implement the design of the BFC and Customer classes so that the following
code generates the output below:
print(f"It's been a wonderful day! \nToday, we have already served
{BFC.order_id} customers. Few more to go before we close for today.")
print("**************************************************")
outlet1 = BFC()
print("1.==========================================")
print("Chicken Menu:")
print(BFC.menu)
print("2.==========================================")
outlet1.addChicken('Regular',95,'Spicy',125)
print("3.==========================================")
print("Chicken Menu:")
print(BFC.menu)
print("4.==========================================")
c1 = Customer("Ariyan")
c1.order = "2xRegular"
outlet1.placeOrderof(c1)
print("5.==========================================")
c2 = Customer("Ayan")
c2.setOrder("2xRegular,3xSpicy")
print("6.==========================================")
outlet1.placeOrderof(c2)
print("7.==========================================")
print(c1)
print("8.==========================================")
print(c2)
OUTPUT:
It's been a wonderful day!
Today, we have already served 80 customers. Few more to go before we close
for today.
**************************************************
1.==========================================
Chicken Menu:
{}
2.==========================================
3.==========================================
Chicken Menu:
{'Regular': 95, 'Spicy': 125}
4.==========================================
Order ID:81
Customer name:Ariyan
Order:
Burger:Regular , Quantity:2
5.==========================================
6.==========================================
Order ID:82
Customer name:Ayan
Order:
Burger:Regular , Quantity:2
Burger:Spicy , Quantity:3
7.==========================================
Bill of Ariyan is 190 taka
8.==========================================
Bill of Ayan is 565 taka
![](/static/compass_v2/shared-icons/check-mark.png)
Step by step
Solved in 4 steps with 2 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
![Concepts of Database Management](https://www.bartleby.com/isbn_cover_images/9781337093422/9781337093422_smallCoverImage.gif)
![Prelude to Programming](https://www.bartleby.com/isbn_cover_images/9780133750423/9780133750423_smallCoverImage.jpg)
![Sc Business Data Communications and Networking, T…](https://www.bartleby.com/isbn_cover_images/9781119368830/9781119368830_smallCoverImage.gif)