Flowdock
*(a) public

Returns the product of this value and a.

Examples:

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