Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

answered 6 years ago

nbruin gravatar image

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.

click to hide/show revision 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.