-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathE4-2.py
48 lines (37 loc) · 1.08 KB
/
E4-2.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
# Copyright (C) Deepali Srivastava - All Rights Reserved
# This code is part of Python course available on CourseGalaxy.com
class Length:
def __init__(self, feet, inches):
self.feet = feet
self.inches = inches
def __str__(self):
return f'{self.feet} {self.inches}'
def add_length(self,L):
f = self.feet + L.feet
i = self.inches + L.inches
if i >= 12:
i = i - 12
f += 1
return Length(f, i)
def add_inches(self,inches):
f = self.feet + inches // 12
i = self.inches + inches % 12
if i >= 12:
i = i - 12
f += 1
return Length(f, i)
def __add__(self,other):
if isinstance(other, Length):
return self.add_length(other)
if isinstance(other,int):
return self.add_inches(other)
else:
return NotImplemented
def __radd__(self,other):
return self.__add__(other)
length1 = Length(2,10)
length2 = Length(3,5)
print(length1 + length2)
print(length1 + 2)
print(length1 + 20)
print(20 + length1)