On Sat, Dec 5, 2009 at 8:01 AM, Rolandb <[email protected]> wrote: > gg=4*A^3 > gg.factor() > (4) * A^3 > > How to separate the number 4? Nor gg.dict() nor list(gg.factor()) has > the number 4.
Hi Roland, You can try gg.operands(), which gives me [A^3, 4] Hope this helps, Alan -- 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/sage-support URL: http://www.sagemath.org
