method

divmod

v1_8_7_72 - Show latest stable - Class: Rational
divmod(other)
public

Returns the quotient and remainder.

Examples:

  r = Rational(7,4)        # -> Rational(7,4)
  r.divmod Rational(1,2)   # -> [3, Rational(1,4)]