-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathClass_Simple.py
50 lines (41 loc) · 1.23 KB
/
Class_Simple.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
44
45
46
47
48
49
50
class Car:
def SetType(self,type):
self._Type=type
def GetType(self):
return self._Type
def SetModel(self,model):
self._Model=model
def GetModel(self):
return self._Model
def SetPrice(self,price):
self._Price=price
def GetPrice(self):
return self._Price
def SetMilesDrive(self,milesDrive):
self._MilesDrive=milesDrive
def GetMilesDrive(self):
return self._MilesDrive
def SetOwner(self,owner):
self._Owner=owner
def GetOwner(self):
return self._Owner
def GetCurrentPrice(self):
return self.GetPrice()- ( self.GetMilesDrive()*10)
def main():
myCar= Car()
myCar.SetType("BMW")
myCar.SetModel(2015)
myCar.SetPrice(26000)
myCar.SetMilesDrive(15)
myCar.SetOwner("Hussein")
CurrentPrice=myCar.GetCurrentPrice()
print("{}'s Car, New price {}".format(myCar.GetOwner(),CurrentPrice))
AlexCar= Car()
AlexCar.SetType("GMC")
AlexCar.SetModel(2017)
AlexCar.SetPrice(28000)
AlexCar.SetMilesDrive(5)
AlexCar.SetOwner("Alex")
CurrentPrice=AlexCar.GetCurrentPrice()
print("{} 's Car, New price {}".format(AlexCar.GetOwner(),CurrentPrice))
if __name__ == '__main__':main()