printer_mathml.py 文件源码

python
阅读 21 收藏 0 点赞 0 评论 0

项目:bce 作者: bce-toolkit 项目源码 文件源码
def _print_Rational(self, e):
        """Print a Rational object.

        :param e: The expression.
        :rtype : bce.dom.mathml.all.Base
        :return: The printed MathML object.
        """

        assert isinstance(e, _sympy.Rational)

        if e.q == 1:
            #  Don't do division if the denominator is 1.
            return _mathml.NumberComponent(str(e.p))

        return _mathml.FractionComponent(
            _mathml.NumberComponent(str(e.p)),
            _mathml.NumberComponent(str(e.q))
        )
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号