Multiple outputs with Sage Notebook
Hello Guys,
i have the following question. I use Sage on Windows so I use the Sage Notebook in my browser. I wanted to know if there is a possibility to get more than one output from that without going to a new "compute cell" for everything i want to be computed... For example: When i have
sage: Zmod(7) +++
sage: R.<x> = Zmod(7)[]
sage: R +++
sage: RR = R.quotient(x^7 - 1)
sage: RR +++
sage: f = RR(x^6-x^4+x^3+x^2-1)
sage: f +++
sage: g = f^(-1)
sage: g +++
sage: g.parent() +++
sage: g*f +++
sage: f*g +++
i only get output from the last command (as result 1) But i want to get output from every line i marked above with +++. Is there annother possiblilty than using a new compute cell after every line i want to have output from?