小编典典

在python中添加两个分数

python

我正在尝试在python中添加两个分数

如果输入1/4 + 1/4,我期望得到1/2结果

我用__add__加法建立了一个分数类

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))

但是我得到的输出是2,4,实际上是1/2,只是没有简化。我该如何解决这个问题?


阅读 264

收藏
2021-01-20

共1个答案

小编典典

简化分数的一般方法是找到分子和分母的最大公约数,然后将两者除以

2021-01-20