Flowdock
/(a) public

Returns the quotient of this value and a.

r = Rational(3,4)    # -> Rational(3,4)
r / 2                # -> Rational(3,8)
r / 2.0              # -> 0.375
r / Rational(1,2)    # -> Rational(3,2)
Show source
Register or log in to add new notes.