First time here? Check out the FAQ!
answered 2017-09-27 00:35:25 +0100
To get a Python int, do this:
sage: int('EAEI', base=36) 666666
To get a Sage Integer, do this:
sage: Integer('EAEI', base=36) 666666