-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfraction.py
214 lines (185 loc) · 8.04 KB
/
fraction.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
import math
class Fraction:
def __init__(self,numerator,denominator):
self.numerator = numerator
self.denominator = denominator
# checkig for ZerodivisionError
if self.denominator == 0:
raise ZeroDivisionError("can't devide by zero(0)")
# if numerator of fraction objetc = 0, then changing it's denominator to 1
elif self.numerator == 0:
self.denominator = 1
# checking if agrs are int or float only
self.values = [self.numerator, self.denominator]
for value in self.values:
if not isinstance(value,(int,float)):
raise TypeError("invalid operand(s): expected Frcation(int or float , int or float)")
def __str__(self):
# if numerator of fraction is zero, returning 0
if self.numerator == 0:
return '0'
else:
return f"{self.numerator}/{self.denominator}"
def reduce(self):
# farction to decimal or float
if (self.numerator % self.denominator) == 0:
return self.numerator // self.denominator
else:
return self.numerator / self.denominator
def add_different_denominator_fracs(self, *other):
# calculating sum of fractions with uncommon denominators
numerator = 0
denominators = [self.denominator] # list of denominators, arg for math.lcm()
# as first fraction is not iterable, adding i'ts denominator seperately
for fraction in other:
denominators.append(fraction.denominator)
# calculating lcm
lcm = math.lcm(*denominators) #direferencing list object and calculating lcm
# as first fraction is not iterable, performing it's calculation seperately
numerator += self.numerator * (lcm // self.denominator)
for fraction in other:
numerator += fraction.numerator * (lcm // fraction.denominator)
return Fraction(numerator, lcm)
def __add__(self, *other):
# flag for common denominators
common_denominator = 1
for fraction in other:
# checking for common denominators
if fraction.denominator == self.denominator:
pass
else:
# if denominators are'nt common then changing the flag to 0
common_denominator = 0
if common_denominator == 1:
# calculating sum of fractions with common denominators
for fraction in other:
self.numerator += fraction.numerator
return Fraction(self.numerator,self.denominator)
else:
# if denominators are'nt common, calling add_different_denominator_fracs
return self.add_different_denominator_fracs(*other)
def subtract_different_denominator_fracs(self, *other):
# calculating sum of fractions with uncommon denominators
numerator = 0
denominators = [self.denominator] # list of denominators, arg for math.lcm()
# as first fraction is not iterable, adding i'ts denominator seperately
for fraction in other:
denominators.append(fraction.denominator)
# calculating lcm
lcm = math.lcm(*denominators) #direferencing list object and calculating lcm
# as first fraction is not iterable, performing it's calculation seperately
numerator = self.numerator * (lcm // self.denominator)
for fraction in other:
numerator -= fraction.numerator * (lcm // fraction.denominator)
return Fraction(numerator, lcm)
def __sub__(self, *other):
# flag for common denominators
common_denominator = 1
for fraction in other:
# checking for common denominators
if fraction.denominator == self.denominator:
pass
else:
# if denominators are'nt common then changing the flag to 0
common_denominator = 0
if common_denominator == 1:
# calculating sum of fractions with common denominators
for fraction in other:
self.numerator -= fraction.numerator
return Fraction(self.numerator,self.denominator)
else:
# if denominators are'nt common, calling add_different_denominator_fracs
return self.subtract_different_denominator_fracs(*other)
def __mul__(self, *other):
for fraction in other:
self.numerator *= fraction.numerator
self.denominator *= fraction.denominator
return Fraction(self.numerator, self.denominator)
def __truediv__(self, *other):
for fraction in other:
self.numerator = self.numerator * fraction.denominator
self.denominator = self.denominator * fraction.numerator
return Fraction(self.numerator, self.denominator)
def __floordiv__(self, *other):
return self.__truediv__(*other)
def __mod__(self, *other):
remainder = 0
fractions = [self] + list(other)
for i in range(len(fractions)-1):
remainder = fractions[i].reduce() % fractions[i+1].reduce()
return remainder
def __pow__(self, other):
if isinstance(self,(int,float)) or isinstance(other,(int,float)):
raise TypeError("expecting fraction objects only")
else:
return math.pow(self.reduce(), other.reduce())
def __lt__(self, *other):
result = True
fractions = [self] + list(other)
for i in range(len(fractions)-1):
if fractions[i].reduce() < fractions[i+1].reduce():
pass
else:
result = False
return result
def __le__(self, *other):
result = True
fractions = [self] + list(other)
for i in range(len(fractions)-1):
if fractions[i].reduce() <= fractions[i+1].reduce():
pass
else:
result = False
return result
def __eq__(self, *other):
flag = 0
for fraction in other:
if fraction.reduce() == self.reduce():
flag = 1
if flag == 1:
return True
else:
return False
def __ne__(self, *other):
flag = 0
for fraction in other:
if fraction.reduce() != self.reduce():
flag = 1
if flag == 1:
return True
else:
return False
def __gt__(self, *other):
result = True
fractions = [self] + list(other)
for i in range(len(fractions)-1):
if fractions[i].reduce() > fractions[i+1].reduce():
pass
else:
result = False
return result
def __ge__(self, *other):
result = True
fractions = [self] + list(other)
for i in range(len(fractions)-1):
if fractions[i].reduce() >= fractions[i+1].reduce():
pass
else:
result = False
return result
def __ge__(self, *other: "Fraction") -> bool:
"""Compares fractions for greater than or equal to.
Args:
*other: One or more Fraction objects to compare to.
Returns:
True if self is greater than or equal to all other fractions,
False otherwise.
"""
result = True
fractions = [self] + list(other) # Combine fractions into a list
for i in range(len(fractions) - 1):
# If current fraction is less than the next, return False
if fractions[i].reduce() < fractions[i + 1].reduce():
result = False
break
return result # True if self is greater than or equal to all other fractions