'int' object has no attribute 'den' error message in Python

前端 未结 0 1126
不知归路
不知归路 2021-01-29 11:06

def gcd(m, n): while m % n != 0: m, n = n, m % n return n

class Fraction: def init(self, top, bottom): if not isinstance(top, int): raise ValueError(&quo

相关标签:
回答
  • 消灭零回复
提交回复
热议问题