Reputation: 1765
Is there any way to access the denominator in a fraction in Python 2?
For example, I have a variable:
x = fractions.Fraction(4,1)
And I want to access its denominator. How do I do that?
Upvotes: 27
Views: 19243
Reputation:
>>> from fractions import Fraction
>>> a = Fraction(1,2)
>>> a.denominator
2
Additionally Python's help()
method can be very useful to determine exactly what methods and properties exist for an object. In the example above you could get a help description for the Fraction
object by help(Fraction)
or help(a)
in an interpreter session.
Upvotes: 27