在python中添加两个分数

在python中添加两个分数,第1张

概述我想在 python中添加两个分数 如果输入1/4 1/4,我期待1/2结果 我用__add__方法构建了一个分数类来添加 from fractions import gcdclass fraction: def __init__(self, numerator, denominator): self.num = numerator self.deno 我想在 python中添加两个分数

如果输入1/4 1/4,我期待1/2结果

我用__add__方法构建了一个分数类来添加

from fractions import gcdclass 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,只是没有简化.我怎么能解决这个问题?

解决方法 简化分数的一般方法是找到分子和分母的 greatest common divisor,然后将它们除以它们 总结

以上是内存溢出为你收集整理的在python中添加两个分数全部内容,希望文章能够帮你解决在python中添加两个分数所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1193340.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存