1 | initial version |
The problem comes from the fact that 0,1,23
are preparsed as Sage Ingeers, not Python ints.
To work around the issue, you can either:
0,1,23
with 0r,1r,23r
(the letter r
stands for "raw")preparser(False)
2 | No.2 Revision |
The problem comes from the fact that 0,1,23
are preparsed preparsed as Sage Ingeers, Integers, not Python ints.ints, see https://doc.sagemath.org/html/en/reference/repl/sage/repl/preparse.html
To work around the issue, you can either:
0,1,23
with 0r,1r,23r
(the letter r
stands for "raw")preparser(False)
3 | No.3 Revision |
The problem comes from the fact that 0,1,23
are preparsed as Sage Integers, not Python ints, see https://doc.sagemath.org/html/en/reference/repl/sage/repl/preparse.html
To work around the issue, you can either:
0,1,23
with 0r,1r,23r
(the letter r
stands for "raw")preparser(False)
4 | No.4 Revision |
The problem comes from the fact that 0,1,23
are preparsed as Sage Integers, not Python ints, see https://doc.sagemath.org/html/en/reference/repl/sage/repl/preparse.html
To work around the issue, you can either:
0,1,23
with 0r,1r,23r
(the letter r
stands for "raw")preparser(False)