Hello. How can I get all unexpanded coeffs of a polynomial?
For example, Poly(360*x*y**71*(y**72 - 1)**4 + 360*x**4*(x**5 - 1)**71, x).all_coeffs() should return [360*y**71*(y**72 - 1)**4, 360*x**4*(x**5 - 1)**71], but, instead, it returns expanded long expression. How to avoid this and return untouched coeffs? Thank you. -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/eda7343d-f557-48b2-85e0-d52162a12bb5n%40googlegroups.com.
