-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperson.py
43 lines (30 loc) · 1.06 KB
/
person.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# -*- coding: utf-8 -*-
"""
Created on Sun Nov 28 10:30:29 2021
@author: mjach
"""
'''
What is inheritance?
- we can say inheritance is copying all the functionalities of the base/parent class.
Advantage of the using inheritance --
- DRY - do not repeat yourself - code reuseability
- you can add or remove the functionality or features without modifying the class.
- inheritance define as a -- is a relationship
'''
class Person():
def __init__(self, firstName, secondName):
self.firstName = firstName
self.secondName = secondName
def person_details(self):
return f'{self.firstName}{self.secondName}'
#creat a person abject
personOne = Person('Mohammed', ' Chowdhury')
#print(personOne.person_details())
# Employee is a Person - here employee and person is a relatioship
class Employee(Person):
def __init__(self, firstName, secondName):
super().__init__(firstName, secondName)
def employeeAge(self,age):
return f'{self.age} is a years old'
employeeOne = Employee( 'Hassan', ' Ali')
print(employeeOne.person_details())