Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在 Python 2 中访问分数中的分母?
例如,我有一个变量:
x = 分数.分数(4,1)
我想访问它的分母。我怎么做?
>>> from fractions import Fraction >>> a = Fraction(1,2) >>> a.denominator 2
此外,Python 的help()方法对于确定对象存在哪些方法和属性非常有用。在上面的示例中,您可以通过解释器会话或在解释器会话中获得Fraction对象的帮助描述。help(Fraction)help(a)
help()
Fraction
help(Fraction)
help(a)