polynomial list, array
I would like to store polynomials in an array/list in Sage. How do I do this?
I am editing my question due to the confusion expressed below.
I would like to generate a list of polynomials from a loop.
please clarify your question
Thanks for the answers posted above. Though not directly resolving my intended question due to the confusing statement of my original post, they made me realize I need to declare the list first, like p = [], just like in Python, then append the polynomials or anything else for that matter, one by one, with say p.append(polynomial).