On Mon, Aug 15, 2011 at 5:21 PM, Aaron Meurer <[email protected]> wrote:
> I don't remember if Mul args appear in the same order that they are
> printed, but it doesn't really matter.

FYI: I think so, unless the Mul is unevaluated. Then the printed args
are sorted but the underlying args are not sorted.

    >>> Mul(2,x,3,y,evaluate=0)
    2*3*x*y
    >>> _.args
    (2, x, 3, y)

-- 
You received this message because you are subscribed to the Google Groups 
"sympy" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sympy?hl=en.

Reply via email to