I am trying to add two fractions in python
if input 1/4 + 1/4, I am expecting 1/2 result
I built a fraction class with an __add__
method for addition
from fractions import gcd
class fraction:
def __init__(self, numerator, denominator):
self.num = numerator
self.deno = denominator
def __add__(self, other):
self.sumOfn = self.num + other.num
self.sumOfd = gcd(self.deno,other.deno)
return(self.sumOfn, self.sumOfd)
print(fraction(1,4)+fraction(1,4))
However I am getting 2,4 as output, which is actually 1/2, just not simplified. How could I fix that problem ?
As mentioned by @icodez
from fractions import Fraction
print(Fraction(1,4)+Fraction(1,4))
The general approach to simplifying fractions is to find the greatest common divisor of the numerator and denominator and then divide both of them by it
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With