| I am writing a package (I want to use "import" to import it into sage). I found that in the package (say, test.py), if I write and in sage type import test; test.test() I got "-1 -1/2*a -a" This is different from directly run the above commands from sage. I know in python 2, -1/2 returns -1. But is there a way to write "minus one half" (-1/2) in a package, say, test.py? I know I could use load or attach to load a .sage package. However, they don't have namespace and I hope to have namespace as in python. I could also use 1/2.0, which returns 0.5. But I would want an exact number instead of a float point approximation, for further use. To summarize, in this case, how to write -1/2 in test.py? Or is there a way to load a sage package with namespace? Thanks! |
| (Let me answer myself instead of deleting the question, for other people to refer to:) Use Integer(number) is a sage object, thus don't have the python 2 feature. |
Asked: Dec 17 '11
Seen: 42 times
Last updated: Dec 17 '11
powered by ASKBOT version 0.7.22
Copyright Sage, 2010. Some rights reserved under creative commons license.