-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.py
More file actions
55 lines (35 loc) · 1.07 KB
/
template.py
File metadata and controls
55 lines (35 loc) · 1.07 KB
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
51
52
53
54
55
from abc import ABC, abstractmethod
class SelfDrivingVehicle(ABC):
def driveToDestionation(self) -> None:
self.steer()
self.accelerate()
self.brake()
self.reachDestionation()
def reachDestionation(self) -> None:
print("Made it to destination")
@abstractmethod
def steer(self) -> None:
pass
@abstractmethod
def brake(self) -> None:
pass
@abstractmethod
def accelerate(self) -> None:
pass
class SelfDrivingMotorcycle(SelfDrivingVehicle):
def accelerate(self) -> None:
print("twist the throttle")
def steer(self) -> None:
print("Turning handlebars")
def brake(self) -> None:
print("Pull brake levers")
class SelfDrivingCar(SelfDrivingVehicle):
def accelerate(self) -> None:
print("push the accelerating pedal")
def steer(self) -> None:
print("Turning steering wheel")
def brake(self) -> None:
print("Pull brake pedal")
SelfDrivingMotorcycle().driveToDestionation()
print()
SelfDrivingCar().driveToDestionation()