sage: 1j
------------------------------------------------------------
File "<ipython console>", line 1
Integer(1)j
^
SyntaxError: invalid syntax
but in python:
sage: preparser(False)
sage: 1j
1j
sage: type(1j)
<type 'complex'>
Note that this does work now:
sage: 1rj
1j
sage: 1rj == complex('j')
True
Component: basic arithmetic
Issue created by migration from https://trac.sagemath.org/ticket/4501