forked from baliyanvinay/Python-Interview-Preparation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathObject Creation.py
31 lines (24 loc) · 850 Bytes
/
Object Creation.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
class Car_Wheel:
total_wheels = 0
def __new__(self, value):
# new method is called first for object creation
if Car_Wheel.total_wheels < 5:
Car_Wheel.total_wheels += 1
return super().__new__(self)
else:
raise Exception('Only five car wheels are allowed!!')
def __init__(self, side):
# Initiliazer is called for initializing values
self.side = side
print(f"{self.side} created")
if __name__ == '__main__':
wheel_01 = Car_Wheel('Front Left')
wheel_02 = Car_Wheel('Front Right')
wheel_03 = Car_Wheel('Rear Left')
wheel_04 = Car_Wheel('Rear Right')
wheel_05 = Car_Wheel('Puncture wheel')
try:
print('Trying creating extra wheel')
wheel_06 = Car_Wheel('No side')
except Exception as msg:
print(msg)