1 | initial version |
You can avid having to prefix functions with sage.all.
all the time by using from sage.all import *
. That should put all the standard sage bindings in your namespace, so that you can use Integer
etc. as usual. This is essentially what the sage shell does to make the default sage bindings available.
2 | No.2 Revision |
You can avid avoid having to prefix functions with sage.all.
all the time by using from sage.all import *
. That should put all the standard sage bindings in your namespace, so that you can use Integer
etc. as usual. This is essentially what the sage shell does to make the default sage bindings available.