1 | initial version |
You can not avoid it. The way it works is
.sage
file into a .py
file.py
fileIf you don't want extra files to be created, just use .py
files directly. The .sage
hides some work for you. The conversion .sage -> .py
essentially consists in
from sage.all import *
at the begining of the file123
it will be understood as a Sage integer and not a Python integer.