In [1]:
x = 1
In [2]:
x
Out[2]:
In [3]:
# Opens up new Jupyter QtConsole window that is empty.
%qtconsole
Click in the Jupyter QtConsole window.
Hit Enter key. That will provoke prompt.
Type the following command, then hit the Enter key.
x = 'hello'
Then click on the cell below in this window and execute the cell below.
In [5]:
x
Out[5]:
Notice that the cell above shows the value of x from the command executed in the Jupyter QtConsole window.
Also notice that the number of the cell above, is 5.