python40
python40
https://learning.ccbp.in/course?c_id=a6454e48-d030-4d49-8920-253198052232&t_id=b6025dfc-a6e3-4225-ad36-ad07ca8d9f4e&s_id=de3c24f3-… 1/7
7/27/24, 9:52 PM Revolutionizing the Job Market | NxtWave
Inheritance - Part 2
How would you design and implement placing order with the
details of all the products bought?
Composition
Code
PYTHON
1 class Product:
2
3 def __init__(self, name, price, deal_price, rat
4 self.name = name
5 self.price = price
6 self.deal_price = deal_price
7 self.ratings = ratings
8 self.you_save = price - deal_price
9
10 def display_product_details(self):
11 print("Product: {}".format(self.name))
Expand
Output
Product: Milk
Price: 40
Deal Price: 25
You Saved: 15
Ratings: 3.5
Quantity: 2
Product: TV
Price: 45000
Deal Price: 40000
You Saved: 5000
Expand
https://learning.ccbp.in/course?c_id=a6454e48-d030-4d49-8920-253198052232&t_id=b6025dfc-a6e3-4225-ad36-ad07ca8d9f4e&s_id=de3c24f3-… 2/7
7/27/24, 9:52 PM Revolutionizing the Job Market | NxtWave
Overriding Methods
Code
PYTHON
1 class Product:
2
3 def __init__(self, name, price, deal_price, rating
4 self.name = name
5 self.price = price
6 self.deal_price = deal_price
7 self.ratings = ratings
8 self.you_save = price - deal_price
9
10 def display_product_details(self):
11 print("Product: {}".format(self.name))
Expand
Output
Because
Super
https://learning.ccbp.in/course?c_id=a6454e48-d030-4d49-8920-253198052232&t_id=b6025dfc-a6e3-4225-ad36-ad07ca8d9f4e&s_id=de3c24f3-… 3/7
7/27/24, 9:52 PM Revolutionizing the Job Market | NxtWave
__init__
Code
PYTHON
1 class Product:
2
3 def __init__(self, name, price, deal_price, rating
4 self.name = name
5 self.price = price
6 self.deal_price = deal_price
7 self.ratings = ratings
8 self.you_save = price - deal_price
9
10 def display_product_details(self):
11 print("Product: {}".format(self.name))
Expand
Output
Product: Laptop
Price: 45000
Deal Price: 40000
You Saved: 5000
Ratings: 3.5
Warranty 10 months
MultiLevel Inheritance
https://learning.ccbp.in/course?c_id=a6454e48-d030-4d49-8920-253198052232&t_id=b6025dfc-a6e3-4225-ad36-ad07ca8d9f4e&s_id=de3c24f3-… 4/7
7/27/24, 9:52 PM Revolutionizing the Job Market | NxtWave
PYTHON
1 class Product:
2 pass
3
4 class ElectronicItem(Product):
5 pass
6
7 class Laptop(ElectronicItem):
8 pass
https://learning.ccbp.in/course?c_id=a6454e48-d030-4d49-8920-253198052232&t_id=b6025dfc-a6e3-4225-ad36-ad07ca8d9f4e&s_id=de3c24f3-… 5/7
7/27/24, 9:52 PM Revolutionizing the Job Market | NxtWave
https://learning.ccbp.in/course?c_id=a6454e48-d030-4d49-8920-253198052232&t_id=b6025dfc-a6e3-4225-ad36-ad07ca8d9f4e&s_id=de3c24f3-… 6/7
7/27/24, 9:52 PM Revolutionizing the Job Market | NxtWave
https://learning.ccbp.in/course?c_id=a6454e48-d030-4d49-8920-253198052232&t_id=b6025dfc-a6e3-4225-ad36-ad07ca8d9f4e&s_id=de3c24f3-… 7/7