为了账号安全,请及时绑定邮箱和手机立即绑定

Python 中自定义类的字符串格式

Python 中自定义类的字符串格式

牛魔王的故事 2021-10-26 18:22:07
我IntegerMod为整数模一个素数编写了一个自定义类。一切正常。然后将它们用作用 构建的多项式的系数numpy.poly1d,并设法实现足够的方法,IntegerMod以便对这些多项式的操作按我的需要工作(例如,找到给定一堆点的插值多项式)。只剩下一点细节,那就是print(pol)那些多项式实际上失败了,因为 Python 尝试对%g系数使用字符串格式,但未能说明IntegerMod应该是字符串还是数字。实际上IntegerMod继承自numbers.Number,但似乎还不够。我的问题是,我可以在我的班级中实现字符串格式的行为吗?如果没有,我应该如何处理这个问题?产生错误的 MWE:import numbersimport numpy as npclass IntegerMod(numbers.Number):    def __init__(self, k, p):        self.k = k % p        self.p = p    def __repr__(self):        return "<%d (%d)>" % (self.k, self.p)if __name__ == "__main__":    p = 13    coef1 = IntegerMod(2, p)    coef2 = IntegerMod(4, p)    print(coef1)  # Works as expected    pol = np.poly1d([coef1, coef2])    print(pol)    """ # error:        s = '%.4g' % q        TypeError: float() argument must be a string or a number, not 'IntegerMod'    """
查看完整描述

1 回答

?
青春有我

TA贡献1784条经验 获得超8个赞

也许您应该实现该__float__方法,因为 poly1d 格式需要浮点数。

像这样的东西

    def __float__(self):
            return float(self.k)


查看完整回答
反对 回复 2021-10-26
  • 1 回答
  • 0 关注
  • 209 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信