1 | initial version |
You can simply try:
sage: ZZ(a)
2 | No.2 Revision |
You To get the right hand side of a
, you can simply try:do
sage: ZZ(a)
a.rhs()
If you wanr a Sage integer, not a symbolic expression, you can do
sage: ZZ(a.rhs())
3 | No.3 Revision |
To get the right hand side of a
, you can do
sage: a.rhs()
If you wanr want a Sage integer, not a symbolic expression, you can do
sage: ZZ(a.rhs())